ITicketBooth
Functions
ticketsOf
function ticketsOf(uint256 _projectId) external view returns (ITickets);
projects
function projects() external view returns (IProjects);
lockedBalanceOf
function lockedBalanceOf(address _holder, uint256 _projectId) external view returns (uint256);
lockedBalanceBy
function lockedBalanceBy(address _operator, address _holder, uint256 _projectId) external view returns (uint256);
stakedBalanceOf
function stakedBalanceOf(address _holder, uint256 _projectId) external view returns (uint256);
stakedTotalSupplyOf
function stakedTotalSupplyOf(uint256 _projectId) external view returns (uint256);
totalSupplyOf
function totalSupplyOf(uint256 _projectId) external view returns (uint256);
balanceOf
function balanceOf(address _holder, uint256 _projectId) external view returns (uint256 _result);
issue
function issue(uint256 _projectId, string calldata _name, string calldata _symbol) external;