Skip to main content

count

Contract: JBProjects

Interface: IJBProjects

The number of projects that have been created using this contract.

The count is incremented with each new project created. The resulting ERC-721 token ID for each project is the newly incremented count value.

Definition

/**
@notice
The number of projects that have been created using this contract.

@dev
The count is incremented with each new project created.
The resulting ERC-721 token ID for each project is the newly incremented count value.
*/
uint256 public override count = 0;
  • The resulting view function can be accessed externally by anyone.
  • The resulting function overrides a function definition from the IJBProjects interface.