IDistributionProposal
Interface Description
License: MIT
This is the contract the governance can execute in order to distribute rewards proportionally among all the voters who participated in the certain proposal
Structs info
DPInfo
The struct holds information about distribution proposal
Parameters:
rewardAddress
address
the address of reward token
rewardAmount
uint256
the total amount of rewards
claimed
mapping(address => bool)
mapping, that indicates whether the user has claimed the rewards
Functions info
execute (0xc45e0ae6)
Executed by Gov
contract, creates a DP
Parameters:
proposalId
uint256
the id of distribution proposal in Gov pool
token
address
the rewards token address
amount
uint256
the total amount of rewards
claim (0x45718278)
Claims distribution proposal rewards
Parameters:
voter
address
Voter address
proposalIds
uint256[]
the array of proposal ids
isClaimed (0xd2ef0795)
Function to check if voter claimed their reward
Parameters:
proposalId
uint256
the distribution proposal id
voter
address
the user to check
Return values:
[0]
bool
true if reward is claimed
getPotentialReward (0xfe32b0ba)
Return potential reward. If user hasn't voted, or getTotalVotesWeight
is zero, return zero
Parameters:
proposalId
uint256
the proposal id
voter
address
Voter address