unclaimedBalanceOf
Contract: JBTokenStore
Interface: IJBTokenStore
Each holder's balance of unclaimed tokens for each project.
Definition
/**
  @notice
  Each holder's balance of unclaimed tokens for each project.
  _holder The holder of balance.
  _projectId The ID of the project to which the token belongs.
*/
mapping(address => mapping(uint256 => uint256)) public override unclaimedBalanceOf;
- Arguments:
- _holderis the holder of balance.
- _projectIdis the ID of the project to which the token belongs.
 
- The resulting view function can be accessed externally by anyone.
- The resulting function overrides a function definition from the IJBTokenStoreinterface.