LinkedTAX.sol

The tax contract for the linked protocol calculated the interest fee and stability reward for the linked assets instance.

Below the overview of all functions in the tax contract. The detailed description of a state change function can be found in the tab of the specific function.

#State changing functions
function initialize(address proxyAddress) external returns (bool success);
function updateNormRate(uint256 _baseRateReward, uint256 _baseRateFee) owners external returns (bool success);
function adjustLiqCorrection(uint256 amount) external returns (bool success);

#Non state changing functions
function viewNormRateReward() external view returns (uint256);
function viewNormRateFee() external view returns (uint256);

High overview

State change functions

  • initialize() can only be called once and is used to set the contract addresses of the proxy contract for this linked asset instance.

  • updateNormRate()

  • adjustLiqCorrection()

Non state change functions

  • viewNormRateReward()

  • viewNormRateFee()

Last updated

Was this helpful?