Reward Distribution
Variables to address distribution speed of each asset.
/// @notice the global Reward distribution speed for borrow
uint256 public globalDistributionSpeed;
/// @notice the global Reward distribution speed for supply
uint256 public globalDistributionSupplySpeed;
/// @notice the Reward distribution speed of each iToken
mapping(address => uint256) public distributionSpeed;
/// @notice the Reward distribution speed supply side of each iToken
mapping(address => uint256) public distributionSupplySpeed;Deployed Contracts
Name
Address
Descriptions
How to calculate the claimable amount of reward in LendingDataV2.sol?
Claim reward for any account and any asset in RewardDistributorV3.sol.
Claim reward for any account of all participated assets supplied to or borrowed (including mint Synths) from the protocol RewardDistributorV3.sol.
Claim reward for any account of all participated assets RewardDistributorV3.sol.
Last updated