Create the dapp
Create the dapp -
You can directly register the app by visiting this page and populating the form with your dapp details. Make sure you are logged in to send gasless transactions.
dapps.co - appstore for blockchain/crypto applications
Otherwise, you can call this method from smart contract and pass the required params - _dapp, is a struct which has these data :-
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