unclaimedTotalSupplyOf
Contract: JBTokenStore
Interface: IJBTokenStore
The total supply of unclaimed tokens for each project.
Definition
/**
@notice
The total supply of unclaimed tokens for each project.
_projectId The ID of the project to which the token belongs.
*/
mapping(uint256 => uint256) public override unclaimedTotalSupplyOf;
- Arguments:
_projectId
is 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
IJBTokenStore
interface.