projectOf
Contract: JBTokenStore
Interface: IJBTokenStore
The ID of the project that each token belongs to.
Definition
/**
  @notice
  The ID of the project that each token belongs to.
  _token The token to check the project association of.
*/
mapping(IJBToken => uint256) public override projectOf;
- Arguments:
_tokenis token to check the project association of.
 - The resulting view function can be accessed externally by anyone.
 - The resulting function overrides a function definition from the 
IJBTokenStoreinterface.