Skip to content

Variables ​

Git Source

Inherits:Constants, Initializable, OwnableUpgradeable, Structs

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;

nativeTokenAllowances ​

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

solidity
mapping(address => uint256) public nativeTokenAllowances;

_protocols ​

Array of all the protocols that had tokens allowed to be used

solidity
EnumerableSet.AddressSet internal _protocols;