-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from decent-dao/develop
Update main with existing deployments
- Loading branch information
Showing
39 changed files
with
7,763 additions
and
747 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
//SPDX-License-Identifier: Unlicense | ||
pragma solidity ^0.8.0; | ||
|
||
import "./interfaces/ITokenClaim.sol"; | ||
import "./VotesToken.sol"; | ||
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | ||
|
||
contract TokenClaim is FactoryFriendly, ITokenClaim { | ||
using SafeERC20 for IERC20; | ||
|
||
address public childToken; | ||
address public parentToken; | ||
uint256 public snapShotId; | ||
uint256 public parentAllocation; | ||
mapping(address => bool) public claimed; | ||
|
||
/// @notice Initialize function, will be triggered when a new proxy is deployed | ||
/// @param initializeParams Parameters of initialization encoded | ||
function setUp(bytes memory initializeParams) public override initializer { | ||
__Ownable_init(); | ||
( | ||
address _childTokenFunder, | ||
address _parentToken, | ||
address _childToken, | ||
uint256 _parentAllocation | ||
) = abi.decode(initializeParams, (address, address, address, uint256)); | ||
|
||
childToken = _childToken; | ||
parentToken = _parentToken; | ||
parentAllocation = _parentAllocation; | ||
|
||
snapShotId = VotesToken(_parentToken).captureSnapShot(); | ||
|
||
IERC20(_childToken).transferFrom(_childTokenFunder, address(this), _parentAllocation); | ||
|
||
emit TokenClaimCreated(_parentToken, _childToken, _parentAllocation, snapShotId); | ||
} | ||
|
||
/// @notice This function allows pToken holders to claim cTokens | ||
/// @param claimer Address which is being claimed for | ||
function claimToken(address claimer) external { | ||
uint256 amount = getClaimAmount(claimer); // Get user balance | ||
|
||
if (amount == 0) revert NoAllocation(); | ||
|
||
claimed[claimer] = true; | ||
|
||
IERC20(childToken).safeTransfer(claimer, amount); // transfer user balance | ||
|
||
emit TokenClaimed(parentToken, childToken, claimer, amount); | ||
} | ||
|
||
/// @notice Gets a users child token claimable amount | ||
/// @param claimer Address which is being claimed for | ||
/// @return cTokenAllocation Users cToken allocation | ||
function getClaimAmount(address claimer) | ||
public | ||
view | ||
returns (uint256) | ||
{ | ||
return claimed[claimer] ? 0 : | ||
(VotesToken(parentToken).balanceOfAt(claimer, snapShotId) * parentAllocation) / | ||
VotesToken(parentToken).totalSupplyAt(snapShotId); | ||
} | ||
} |
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
Oops, something went wrong.