Project Registry
Interface and Spec

description: What can I do with the Project Registry?

Interface and Spec

This documentation covers methods and events available through the Project Registry implementation. See Getting Started for more information on interacting with the Project Registry.

Functions

getProjectOwners

function getProjectOwners(uint256 projectID) external view returns (address[])

Behaviors

projectOwnersCount

function projectOwnersCount(uint256 projectID) external view returns(uint256)

Behaviors

removeProjectOwner

function removeProjectOwner(uint256 projectID, address prevOwner, address owner)

Behaviors

createProject

function createProject(MetaPtr calldata metadata)

Behaviors

updateProjectMetadata

function updateProjectMetadata(uint256 projectID, MetaPtr calldata metadata)

Behaviors

addProjectOwner

function addProjectOwner(uint256 projectID, address newOwner)

Behaviors