Create
Emitted from:
Definition
event Create(
uint256 indexed projectId,
address indexed owner,
JBProjectMetadata metadata,
address caller
);
projectId
is the token ID of the NFT (ERC-721) that was created to represent the project.owner
is the address that owns the NFT (ERC-721) token representing the project.metadata
is the metadata that that was associated with the project upon its creation. It can be found using themetadataContentOf
property.caller
is the address that issued the transaction within which the event was emitted.