-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add RepAllocation contract * bump v to rc.23 * return value to redeem.
- Loading branch information
1 parent
c7745e8
commit 20eb410
Showing
5 changed files
with
130 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
pragma solidity ^0.5.4; | ||
|
||
import "openzeppelin-solidity/contracts/ownership/Ownable.sol"; | ||
|
||
|
||
/** | ||
* @title reputation allocation contract | ||
* This scheme can be used to allocate a pre define amount of reputation to whitelisted | ||
* beneficiaries. | ||
* this contract can be used as the rep mapping contract for RepitationFromToken contract. | ||
*/ | ||
contract RepAllocation is Ownable { | ||
|
||
|
||
// beneficiary -> amount | ||
mapping(address => uint256) public reputationAllocations; | ||
bool public isFreeze; | ||
|
||
event BeneficiaryAddressAdded(address indexed _beneficiary, uint256 indexed _amount); | ||
|
||
/** | ||
* @dev addBeneficiary function | ||
* @param _beneficiary to be whitelisted | ||
*/ | ||
function addBeneficiary(address _beneficiary, uint256 _amount) public onlyOwner { | ||
require(!isFreeze, "can add beneficiary only if not disable"); | ||
|
||
if (reputationAllocations[_beneficiary] == 0) { | ||
reputationAllocations[_beneficiary] = _amount; | ||
emit BeneficiaryAddressAdded(_beneficiary, _amount); | ||
} | ||
} | ||
|
||
/** | ||
* @dev add addBeneficiaries function | ||
* @param _beneficiaries addresses | ||
*/ | ||
function addBeneficiaries(address[] memory _beneficiaries, uint256[] memory _amounts) public onlyOwner { | ||
require(_beneficiaries.length == _amounts.length); | ||
for (uint256 i = 0; i < _beneficiaries.length; i++) { | ||
addBeneficiary(_beneficiaries[i], _amounts[i]); | ||
} | ||
} | ||
|
||
/** | ||
* @dev freeze function | ||
* cannot defreeze | ||
*/ | ||
function freeze() public onlyOwner { | ||
isFreeze = true; | ||
} | ||
|
||
/** | ||
* @dev get balanceOf _beneficiary function | ||
* @param _beneficiary addresses | ||
*/ | ||
function balanceOf(address _beneficiary) public view returns(uint256) { | ||
return reputationAllocations[_beneficiary]; | ||
} | ||
|
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters