InitInfo
Struct of initialization information used on project creation
name
Name of projectsymbol
Symbol of projectprimaryReceiver
Address of splitter contract receiving primary salesrandomizer
Address of Randomizer contractrenderer
Address of Renderer contracttagIds
Array of tag IDs describing the project- 'onchainData' Onchain data to be stored using SSTORE2 and available to renderers
struct InitInfo {
string name;
string symbol;
address[] primaryReceivers;
uint32[] allocations;
address randomizer;
address renderer;
uint256[] tagIds;
bytes onchainData;
}