StableOracle.sol
Contract Members
contract IOracle public oracle;
uint256 public lastPrice;
uint256 public evictPercentage;
bool public manualOverride;
uint256 public manualPrice;event ChangeOracle(address _oldOracle, address _newOracle);
event ChangeEvictPercentage(uint256 _oldEvictPercentage, uint256 _newEvictPercentage);
event SetManualPrice(uint256 _oldPrice, uint256 _newPrice);
event SetManualOverride(bool _override);Functions
changeOracle
changeEvictPercentage
getCurrencyAddress
getCurrencySymbol
getCurrencyDenominated
getPrice
_change
setManualPrice
setManualOverride
PreviousInterface to be implemented by all Transfer Manager modules (ITransferManager.sol)NextVolumeRestrictionTM.sol
Last updated
Was this helpful?