Create the dapp
struct Dapp {
string appName;
bytes32 appId;
address appAdmin; //primary
string appUrl;
string appIcon;
string appSmallDescription;
string appLargeDescription;
string appCoverImage;
string[] appScreenshots; // upto 5
string[] appCategory; // upto 7
string[] appTags; // upto 7
string[] appSocial;
bool isVerifiedDapp; // true or false
uint256 credits;
uint256 renewalTimestamp;
}Last updated