Create a simple Voting DApp with Solidity 1/2

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 พ.ย. 2024

ความคิดเห็น • 29

  • @damdam9625
    @damdam9625 4 หลายเดือนก่อน

    so easy to understand with basic knowledge. Bravo.

  • @nanonkay5669
    @nanonkay5669 8 หลายเดือนก่อน

    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
    @Avatar40456 ปีที่แล้ว +5

    code link?

  • @ifediorahgregoryugonna6210
    @ifediorahgregoryugonna6210 9 หลายเดือนก่อน

    Bro, in minute 12.27, you talked about getting an application as a prerequisite. Please which application is this?

    • @nanonkay5669
      @nanonkay5669 8 หลายเดือนก่อน

      He said you need to install Git. The subtitles are all messed up lol

  • @cjcodes.web3
    @cjcodes.web3 4 หลายเดือนก่อน

    how do we switch this from polygon mumbai to polygon amoy

  • @wendtoinissaka
    @wendtoinissaka 11 หลายเดือนก่อน +1

    Thanks! can I have your github link?

  • @shobika.g9462
    @shobika.g9462 4 หลายเดือนก่อน

    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

    • @loneewolf15
      @loneewolf15 4 หลายเดือนก่อน

      same issue i am having

    • @shobika.g9462
      @shobika.g9462 4 หลายเดือนก่อน

      @@loneewolf15 what did you do ? I just made a script folder and deploy. js on my own

    • @loneewolf15
      @loneewolf15 4 หลายเดือนก่อน

      @@shobika.g9462 same thing

  • @SWETHA.S-po2mk
    @SWETHA.S-po2mk 7 หลายเดือนก่อน

    in meta mask the network mumbai is not working ..can we use another network

    • @aaryankumar7486
      @aaryankumar7486 6 หลายเดือนก่อน

      Will it work in another network

    • @Aya-b4v6b
      @Aya-b4v6b 5 หลายเดือนก่อน

      yes you can! just make sure you get the right rpc url

    • @cjcodes.web3
      @cjcodes.web3 4 หลายเดือนก่อน

      @@Aya-b4v6b all we need to change is the url? what about the mumbai installation he made?

  • @aryantewatia3161
    @aryantewatia3161 11 หลายเดือนก่อน

    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
      @steveantony5775 10 หลายเดือนก่อน +1

      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

    • @aalansasonsingarayana854
      @aalansasonsingarayana854 9 หลายเดือนก่อน

      how you fixed it@@steveantony5775

    • @matthewhigginbottom2580
      @matthewhigginbottom2580 8 หลายเดือนก่อน

      I also have the same problem! Not sure what to do. Any ideas?

    • @steveantony5775
      @steveantony5775 8 หลายเดือนก่อน

      @@matthewhigginbottom2580 need to see the code

    • @steveantony5775
      @steveantony5775 8 หลายเดือนก่อน

      @@matthewhigginbottom2580 need to see the code

  • @tsunningwah3471
    @tsunningwah3471 8 หลายเดือนก่อน

    zhihai2

  • @tsunningwah3471
    @tsunningwah3471 8 หลายเดือนก่อน

    lknlkjnlnln

  • @itslucas00
    @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.