so easy to understand with basic knowledge. Bravo.
@nanonkay566910 ай бұрын
Who did these subtitles? They were constantly messing up what you were saying lol, but I could still hear what you were saying even without them, thankfully
@Avatar40456 Жыл бұрын
code link?
@ifediorahgregoryugonna621011 ай бұрын
Bro, in minute 12.27, you talked about getting an application as a prerequisite. Please which application is this?
@nanonkay566910 ай бұрын
He said you need to install Git. The subtitles are all messed up lol
@shobika.g94626 ай бұрын
there is no deploy.js after creating hardhat , instead getting iginition\modules folder under which it has Lock.js , and also another Lock.js uder test folder like seen in video
@loneewolf156 ай бұрын
same issue i am having
@shobika.g94626 ай бұрын
@@loneewolf15 what did you do ? I just made a script folder and deploy. js on my own
@loneewolf156 ай бұрын
@@shobika.g9462 same thing
@SWETHA.S-po2mk9 ай бұрын
in meta mask the network mumbai is not working ..can we use another network
@aaryankumar74868 ай бұрын
Will it work in another network
@Aya-b4v6b7 ай бұрын
yes you can! just make sure you get the right rpc url
@cjcodes.web36 ай бұрын
@@Aya-b4v6b all we need to change is the url? what about the mumbai installation he made?
@cjcodes.web36 ай бұрын
how do we switch this from polygon mumbai to polygon amoy
@wendtoinissaka Жыл бұрын
Thanks! can I have your github link?
@aryantewatia3161 Жыл бұрын
bro, when i am deploying my contract it is showing "Contract Address deployed: undefined" it is showing undefined how to get my contract address now ????
@steveantony5775 Жыл бұрын
Ur deployment was successful but you have a typo in your code that's why it doesn't show the contract address faced the same issue but I fixed it later
@aalansasonsingarayana85411 ай бұрын
how you fixed it@@steveantony5775
@matthewhigginbottom258010 ай бұрын
I also have the same problem! Not sure what to do. Any ideas?
@steveantony577510 ай бұрын
@@matthewhigginbottom2580 need to see the code
@steveantony577510 ай бұрын
@@matthewhigginbottom2580 need to see the code
@tsunningwah347110 ай бұрын
zhihai2
@tsunningwah347110 ай бұрын
lknlkjnlnln
@itslucas00 Жыл бұрын
how do I fix these errors (the ones underlined)? ------------------------------------------------------------------------------------------------ First Error: the code: for (uint256 i = 0; i < _candidates.length; i++) { candidates.push( ); } error message: Named argument "numberOfVotes" does not match function declaration. ------------------------------------------------------------------------------------------------ Second Error: the code: // to vote function function voteTo(uint256 _id) public electionOngoing { require(checkElectionPeriod(), "Election period has ended"); require(!voterStatus(msg.sender), "You already voted. You can only vote once."); voters[msg.sender] = true; listOfVoters.push(msg.sender); } error message: Member "numberOfVotes" not found or not visible after argument-dependent lookup in struct Voting.Candidate storage ref.