Hello there ππ½, This is a written tutorial on a Fullstack Decentralized application using some web3 technologies, I call this dapp NFT AIR
The ide...
For further actions, you may consider blocking this person and/or reporting abuse
Weβll explanatory
HI sir how can i make app for my business website could you help me.
Hello, I will love to assist. What exactly do you want me to help you with? Can talk privately?
To paraphrase Darth Vader:
π€ͺ
But thank you for this tutorial - it really gives a good overview of the different parts one can use to build a dapp. I hadn't checked out thegraph, yet, but will do so thanks to your tutorial.
hahaha...
You're welcome and the graph is really awesome
function GetmemberByAddr(address _member) external view returns(MemeMembers[] memory){
uint currentMemberNum = NumOfAllMembers.current();
uint currentIndex = 0;
MemeMembers[] memory foundMember = new MemeMembers[](1);
for(uint i = 0; i < currentMemberNum; i++){
if(_member == IdMembers[i + 1].MemeberAddress)
}
}
from where this _member address gets ?
Wow, this is thorough and insightful!
after pasting this command getting an error
$ graph init --product hosted-service vishal590/nft-air-by-curious
error
bash: graph: command not found
npm graph graph init --product hosted-service vishal590/nft-air-by-curious
what is this in fetchAllMemes() function ?
MemeFiles storage memeFiles = IdMemeFiles[currenNum];
Typescript.ts is auto generated or we have to modify and write it?