IssuerInfo

Git Source

Struct of issuer information

  • primaryReceiver Address of splitter contract receiving primary sales
  • projectInfo Project information
  • activeMinters Array of authorized minter contracts used for enumeration
  • minters Mapping of minter contract to authorization status
struct IssuerInfo {
    address primaryReceiver;
    ProjectInfo projectInfo;
    address[] activeMinters;
    mapping(address => uint8) minters;
}