claimFor
Contract: JBTokenStore
Interface: IJBTokenStore
- Step by step
- Code
- Errors
- Events
- Bug bounty
Claims internally accounted for tokens into a holder's wallet.
Only a token holder, the owner of the token's project, or an operator specified by the token holder can claim its unclaimed tokens.
Definition
function claimFor(
  address _holder,
  uint256 _projectId,
  uint256 _amount
) external override requirePermission(_holder, _projectId, JBOperations.CLAIM) { ... }
- Arguments:
- _holderis the owner of the tokens being claimed.
- _projectIdis the ID of the project whose tokens are being claimed.
- _amountis the amount of tokens to claim.
 
- Through the requirePermissionmodifier, the function is only accessible by the token holder, or from an operator that has been given theJBOperations.CLAIMpermission by the token holder.
- The function overrides a function definition from the IJBTokenStoreinterface.
- The function does't return anything.
Body
- 
Get a reference to the project's current token. // Get a reference to the project's current token.
 IJBToken _token = tokenOf[_projectId];Internal references: 
- 
Make sure the project has a token. If it doesn't, there's nowhere to claim tokens onto. // The project must have a token contract attached.
 if (_token == IJBToken(address(0))) revert TOKEN_NOT_FOUND();
- 
Get a reference to the amount of unclaimed project tokens the holder has. // Get a reference to the amount of unclaimed project tokens the holder has.
 uint256 _unclaimedBalance = unclaimedBalanceOf[_holder][_projectId];Internal references: 
- 
Make sure the holder has enough tokens to claim. // There must be enough unlocked unclaimed tokens to claim.
 if (_unclaimedBalance < _amount) revert INSUFFICIENT_UNCLAIMED_TOKENS();
- 
Subtract from from the unclaimed project token balance of the holder and the unclaimed token total supply of the project. unchecked {
 // Subtract the claim amount from the holder's unclaimed project token balance.
 unclaimedBalanceOf[_holder][_projectId] = _unclaimedBalance - _amount;
 // Subtract the claim amount from the project's unclaimed total supply.
 unclaimedTotalSupplyOf[_projectId] = unclaimedTotalSupplyOf[_projectId] - _amount;
 }Internal references: 
- 
Mint the tokens to the holder's wallet. // Mint the equivalent amount of the project's token for the holder.
 _token.mint(_projectId, _holder, _amount);External references: 
- 
Emit a Claimevent with the relevant parameters.emit Claim(_holder, _projectId, _unclaimedBalance, _amount, msg.sender);Event references: 
/**
  @notice
  Claims internally accounted for tokens into a holder's wallet.
  @dev
  Only a token holder, the owner of the token's project, or an operator specified by the token holder can claim its unclaimed tokens.
  @param _holder The owner of the tokens being claimed.
  @param _projectId The ID of the project whose tokens are being claimed.
  @param _amount The amount of tokens to claim.
*/
function claimFor(
  address _holder,
  uint256 _projectId,
  uint256 _amount
) external override requirePermission(_holder, _projectId, JBOperations.CLAIM) {
  // Get a reference to the project's current token.
  IJBToken _token = tokenOf[_projectId];
  // The project must have a token contract attached.
  if (_token == IJBToken(address(0))) revert TOKEN_NOT_FOUND();
  // Get a reference to the amount of unclaimed project tokens the holder has.
  uint256 _unclaimedBalance = unclaimedBalanceOf[_holder][_projectId];
  // There must be enough unlocked unclaimed tokens to claim.
  if (_unclaimedBalance < _amount) revert INSUFFICIENT_UNCLAIMED_TOKENS();
  unchecked {
    // Subtract the claim amount from the holder's unclaimed project token balance.
    unclaimedBalanceOf[_holder][_projectId] = _unclaimedBalance - _amount;
    // Subtract the claim amount from the project's unclaimed total supply.
    unclaimedTotalSupplyOf[_projectId] = unclaimedTotalSupplyOf[_projectId] - _amount;
  }
  // Mint the equivalent amount of the project's token for the holder.
  _token.mint(_projectId, _holder, _amount);
  emit Claim(_holder, _projectId, _unclaimedBalance, _amount, msg.sender);
}
| String | Description | 
|---|---|
| TOKEN_NOT_FOUND | Thrown if the project doesn't have a token contract attached. | 
| INSUFFICIENT_UNCLAIMED_TOKENS | Thrown if the holder doens't have enough tokens to claim. | 
| Name | Data | 
|---|---|
| Claim | 
 | 
| Category | Description | Reward | 
|---|---|---|
| Optimization | Help make this operation more efficient. | 0.5ETH | 
| Low severity | Identify a vulnerability in this operation that could lead to an inconvenience for a user of the protocol or for a protocol developer. | 1ETH | 
| High severity | Identify a vulnerability in this operation that could lead to data corruption or loss of funds. | 5+ETH |