How To Code Your First Ethereum Smart Contract

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

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

  • @marcbechamp
    @marcbechamp 3 ปีที่แล้ว +106

    2 years later and the tutorial worked flawlessly. Just a few differences in the Solidity UI. This is exactly what I needed to get started immediately. No Git, no Node, no npm, just code and debugging. Thanks a million. Thumbs up & suscribed.

    • @nidacanpolat3316
      @nidacanpolat3316 5 หลายเดือนก่อน

      Why can't I take action when I enter an http address in the environment option?

  • @codysatornino8162
    @codysatornino8162 3 ปีที่แล้ว +8

    This was the first thing I watched where I could understand a little bit of it. I don't know what exactly I just did, but I followed your instructions and it was working. I just don't know where to look from here to learn more about it all lol thanks for this video

  • @AranTodd
    @AranTodd 39 นาทีที่ผ่านมา

    Appreciate the detailed breakdown! I have a quick question: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How can I transfer them to Binance?

  • @sridhar7970
    @sridhar7970 10 หลายเดือนก่อน +1

    Bro that's really nice and thanks for such a good explanation as I was worried with how to interact with contact you gave a nice way of explanation 😀

  • @AlexCruz-zf1qn
    @AlexCruz-zf1qn 2 ปีที่แล้ว +1

    Following this code right now, wonder what will happen have Zero experience in this so praying for the best !

  • @moisespineda7886
    @moisespineda7886 3 ปีที่แล้ว +1

    I subscribed as soon as he said free boot camp. Worth it

    • @royanguiano2610
      @royanguiano2610 3 ปีที่แล้ว

      how has the classes been you joined?? have you been learning?

  • @arthurh1969
    @arthurh1969 2 ปีที่แล้ว +1

    I did my first smart contract! Yay! But what happens when I decrement below zero? It gives me a wierd result.

    • @nayanbhatia2151
      @nayanbhatia2151 ปีที่แล้ว

      uint refers to uninsigned int which are non negative numbers. Use different variable types for correct results.

  • @pvitto98
    @pvitto98 3 ปีที่แล้ว +2

    You’re so good in making tutorials

  • @HobbyistLifestyle
    @HobbyistLifestyle 2 ปีที่แล้ว +1

    How would you attach a deed to the smart contract?

  • @pudsey7527
    @pudsey7527 2 ปีที่แล้ว

    So once you connect your metamask your smart contract is ready?

  • @tankstechtutorials5721
    @tankstechtutorials5721 3 ปีที่แล้ว +5

    nice, I was looking for something quick like this to get me started

  • @strangeQuirks
    @strangeQuirks 2 ปีที่แล้ว +1

    What if many people run the counter smart contract at the same time? How would it ensure the count is consistent?

    • @rainmanj9978
      @rainmanj9978 2 ปีที่แล้ว

      What do you mean?

    • @strangeQuirks
      @strangeQuirks 2 ปีที่แล้ว

      @@rainmanj9978 I am wondering if there are race conditions, but i guess not?

  • @rhondadotterer8349
    @rhondadotterer8349 3 ปีที่แล้ว

    I have a contract, when I started it I DID NOT have any coding knowledge and still don’t, when it was created I did not set it so I could extract any of the accumulated coins that would be paid to the contract , can you help me?

  • @marcpanther8515
    @marcpanther8515 ปีที่แล้ว

    Each time the function is called, a transaction happens, right? Why doesn't it need to wait for confirmation?
    It seems to increment/decrement instantaneously. Is that just because of the simulated environment?

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

      Correct, you answered your own question. It's in a virtual environment so it's not on the actual blockchain using actual gas

  • @TjSpoonManJacques
    @TjSpoonManJacques 3 ปีที่แล้ว +4

    Solidity hell is when you type in the exact code that's in the video but you 3 red compiler errors!!!!

    • @revxnth
      @revxnth 3 ปีที่แล้ว +1

      i didn't get any error lmao

    • @mironadiel
      @mironadiel 3 ปีที่แล้ว +1

      same here, i got the error for line 9, 14 and 15

  • @diptanshumalviya7547
    @diptanshumalviya7547 5 ปีที่แล้ว +3

    Hye! I know you don't read messages. if you see please make a video on what to do after making smart contract and what is vyper?

  • @seanbannon325
    @seanbannon325 3 ปีที่แล้ว +2

    doesnt seem like that website exists anymore

  • @nidacanpolat3316
    @nidacanpolat3316 5 หลายเดือนก่อน

    Why can't I take action when I enter an http address in the environment option?

  • @tvapp5327
    @tvapp5327 3 ปีที่แล้ว +1

    Awesome presentation - what would happen to uint value if we decrement when zero....

    • @cryptophoenix2023
      @cryptophoenix2023 3 ปีที่แล้ว

      Depending on which version of Solidity you are using, it'll either revert or it'll result in an underflow. I think 0.8.0+ will result in a revert error, and anything below that will result in an underflow. If you don't know what underflow/overflow is then look it up, it's kinda cool but also extremely bad for smart contracts if it happens lol

  • @posenaitito786
    @posenaitito786 2 ปีที่แล้ว

    Is this how I can open a smart contract to start up nft?

  • @mrlifted365
    @mrlifted365 3 ปีที่แล้ว

    7am - April 25th 2021- Stamp me as being here.

  • @solvability2782
    @solvability2782 3 ปีที่แล้ว +1

    thanks. simple, short, sweet. appreciate it bro

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

    A wild guess, data types probably affect gas fees.

  • @ward7576
    @ward7576 3 ปีที่แล้ว +1

    From the comments here I recognize that many of you haven't had any programming experience. Although it's not all that, it's really recommended to have it in order to have frustration free experience where you don't have to fight easy battles just to get to the point of the video.

  • @tyranitartrading1561
    @tyranitartrading1561 2 ปีที่แล้ว +1

    wow i am gonna use this info thanks dude hella usefull for a start. I am looking to start a new nft project and need to learn how to write a smart contract for something somewhat like staking but diffrent lol. in all honesty i would love some more advice if you are down to give it! thanks again dude!

  • @poulamimishra3711
    @poulamimishra3711 5 หลายเดือนก่อน

    Thank you.
    It is running

    • @nidacanpolat3316
      @nidacanpolat3316 5 หลายเดือนก่อน

      Why can't I take action when I enter an http address in the environment option?

  • @crazegamez290
    @crazegamez290 3 ปีที่แล้ว +1

    i was getting error saying the declation was already called for the event increment and fuction increment and vise versa for the decrement

  • @trickstersabo4662
    @trickstersabo4662 3 ปีที่แล้ว +1

    Your free 10 hour course isn't sending me an email to join.

  • @pinpeter
    @pinpeter 3 ปีที่แล้ว +1

    Can I still do this with a Mac or NO ?

    • @FrankZen
      @FrankZen 3 ปีที่แล้ว +2

      It's in a browser so I don't see why not...

  • @Tafsirul555
    @Tafsirul555 5 ปีที่แล้ว +2

    Sir, how to verify ERC20 Token In Etherscen... Please help sir

  • @poulamimishra3711
    @poulamimishra3711 5 หลายเดือนก่อน

    How to create .js file , please send the link.

  • @christopherayoub2973
    @christopherayoub2973 3 ปีที่แล้ว +2

    I had an error in line 10. It says New.sol:10:22: ParserError: Expected ';' but got 'Number' count += count 0; ^.
    I have everything written corectly though

  • @MarKac9090
    @MarKac9090 2 ปีที่แล้ว

    please make some tutorial about Solana smart contract

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

    bro web3 provider option is not coming

  • @pinpeter
    @pinpeter 3 ปีที่แล้ว +1

    Im using a macbook i dont see the same thing like on the tutorial !

  • @ankushraj3599
    @ankushraj3599 ปีที่แล้ว

    Can we use C++ for creating smart contract?

  • @arcadiadragoons5467
    @arcadiadragoons5467 3 ปีที่แล้ว +4

    I need a developer to help me with my NFt collection

    • @TVEJason
      @TVEJason 3 ปีที่แล้ว +2

      You and I both

  • @gen_ztech9
    @gen_ztech9 3 ปีที่แล้ว +1

    is this real eth you can sell and buy ???

  • @lstewartproductions
    @lstewartproductions 3 ปีที่แล้ว

    Hang on guy purchasing my house, have to go to grad school to learn programming before you buy it.

  • @martinburke5707
    @martinburke5707 2 ปีที่แล้ว

    You intrested in joining a Crypto startup NFT project?

  • @AIRDROPHUNTER101
    @AIRDROPHUNTER101 2 ปีที่แล้ว

    Well... we follow the steps u do but..... How can we do it without watching videos?.

  • @superhuman9265
    @superhuman9265 3 ปีที่แล้ว +1

    Sir can you help me, I want to add a burning feature, Burnable, Mintable, Operable (ERC1363), Token Recover

  • @sumonbose6816
    @sumonbose6816 2 ปีที่แล้ว

    no update video

  • @oldestsol3754
    @oldestsol3754 2 ปีที่แล้ว

    Hey i forget if i comented already but i would totally love it if you could give me some tips with a few questions i have!! Thanks

  • @Adisirvya
    @Adisirvya 3 ปีที่แล้ว +1

    Thanks man

  • @workouttv7968
    @workouttv7968 5 ปีที่แล้ว +2

    make a video about how to create a android dapp

  • @bokirbx7942
    @bokirbx7942 5 ปีที่แล้ว +1

    hi sir, please make a video how to change name or profile of erc20 token has already created

  • @Florian-tc5qh
    @Florian-tc5qh ปีที่แล้ว

    The intro is cringe but the tutorial is very good

  • @dansb8432
    @dansb8432 2 ปีที่แล้ว

    So.. basically, a "contract" is a class.... hmp.

  • @T1ger8oi
    @T1ger8oi 3 ปีที่แล้ว +1

    Can you teach us how to clone an existing contract and how to deploy it?

    • @christopherozarks6285
      @christopherozarks6285 3 ปีที่แล้ว +3

      Copy/paste my friend!! Other wise just type it word for word on a notepad or something and then type it out on IDE of your choice.

    • @gabmad7028
      @gabmad7028 ปีที่แล้ว

      No

  • @jongwynne7434
    @jongwynne7434 3 ปีที่แล้ว +1

    Thanks for the video but way over my head. I am ideas guy, I see the idea behind them. If you ask me this is the KEY to crypto anything? Even the building of the sites that bring such value.

  • @vibedoutshorts8600
    @vibedoutshorts8600 3 ปีที่แล้ว

    Share this video guys

  • @georgesherpa
    @georgesherpa 3 ปีที่แล้ว

    thanks

  • @sinancetinkaya
    @sinancetinkaya 3 ปีที่แล้ว +9

    hey you can extend your video to 2 hours just by explaining the history of semicolon in programming languages.
    we, the viewers have tons of time to waste, don't worry.

  • @jomoljaison1545
    @jomoljaison1545 2 ปีที่แล้ว

    function assignBoss(address _boss,string memory _companyname)public onlyArbiter
    {
    bossSetting[_companyname]=msg.sender;
    }
    I want to set these bosses in modifier like onlyBoss.What to do

  • @tosgem
    @tosgem 3 ปีที่แล้ว +3

    Please make a tutorial for how to make my own Token. Thank you. Pajeet

  • @rayrivera1830
    @rayrivera1830 3 ปีที่แล้ว +1

    Will this be a skill that will get you a job in the foreseeable future?

  • @janhvibhosle3852
    @janhvibhosle3852 5 ปีที่แล้ว +1

    Sir please make one tutorial regarding pharmacy supply chain management using ethereum.

  • @tn9753
    @tn9753 5 ปีที่แล้ว +2

    How do you save a Remix file to your GitHub account? Thanks in advance.

    • @letsgobrandon3007
      @letsgobrandon3007 3 ปีที่แล้ว

      I remixed a remix once and it was back to normal.

  • @cryptobeast5643
    @cryptobeast5643 3 ปีที่แล้ว

    doesnt work

  • @CryptoCrimZn
    @CryptoCrimZn ปีที่แล้ว

    Do you have a school???

  • @umairshahid6645
    @umairshahid6645 5 ปีที่แล้ว +3

    please make a android blockchain dapp and connect it with smart contraact

  • @devgatling
    @devgatling 2 ปีที่แล้ว

    dope!

  • @pooblock4092
    @pooblock4092 3 ปีที่แล้ว +2

    good thing im from java....

  • @terryterry1655
    @terryterry1655 2 ปีที่แล้ว

    how to buid a smart contract fpr insurance company?

  • @artofficialapol
    @artofficialapol 2 ปีที่แล้ว

    I received an error that said:
    ParserError: Expected ‘;’ but got ‘event’
    - -> TSC.sol:6:5:
    |
    6 event Increment(unit value);
    | ^^^^^
    What does this mean?

  • @QW3RTYUU
    @QW3RTYUU 3 ปีที่แล้ว

    Oof those comments..

  • @draflex
    @draflex 2 ปีที่แล้ว +1

    That was so easy! Time for my next lesson...

    • @gabmad7028
      @gabmad7028 ปีที่แล้ว +1

      Your next lesson will be not to comment such a stupid comment

    • @gabmad7028
      @gabmad7028 ปีที่แล้ว +1

      Goofy ahh

  • @kdpoint4221
    @kdpoint4221 2 ปีที่แล้ว

    🤗🤗🤗

  • @lucidlagomorph5809
    @lucidlagomorph5809 2 ปีที่แล้ว

    yes its not much fun with a template contract I want to get stuck into some geekery

  • @10phante
    @10phante 3 ปีที่แล้ว

    Can you do it for me :(

  • @ajaykrishnakv941
    @ajaykrishnakv941 3 ปีที่แล้ว

    Thanks a ton mate!

    • @gabmad7028
      @gabmad7028 ปีที่แล้ว

      Ill consider it!

  • @AquinoThug
    @AquinoThug 5 ปีที่แล้ว

    Hello from Brazil. Nice to meet yours vídeos

  • @alicantipi4235
    @alicantipi4235 2 ปีที่แล้ว

    what a beautiful guy

  • @alex-tv6tr
    @alex-tv6tr 2 ปีที่แล้ว

    hey hey hey hotshot - SLOW DOWN - you do not give a link to the site but speak the words at a two to the dozen, you do not produce a link, you do not even add it to your youtube when you say it- you simply go to the website. So please, calm down and revisit your youtube video and remember- some of us are not geniuses - and known NOTHING ! lol :) But t least I know I know nothing if you get my drift.

  • @storyverse665
    @storyverse665 2 ปีที่แล้ว

    Is this contract compatible with ERC-721 OR ERC-1155

  • @yevgeniybondar7509
    @yevgeniybondar7509 3 ปีที่แล้ว

    LIKE

  • @rimvydasb3531
    @rimvydasb3531 3 ปีที่แล้ว

    Your count incrementation cost ~o.oo5 eth ~ 9 euros… pretty insane.

  • @leviathanragnarok4491
    @leviathanragnarok4491 2 ปีที่แล้ว

    hey guys, im a student looking to gain some experience in solidity and smart contracts. If you have a porject that that i can work on please contact id love to be part of the team