Smart Contract Development with Foundry

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024

Комментарии • 36

  • @ccddandev
    @ccddandev 2 года назад +2

    After watching this very well explained intro to Foundry, I can say that I'm gonna keep using hardhat. Thanks Nader!!

  • @carlosschellenberger7729
    @carlosschellenberger7729 2 года назад +3

    Excellent tutorial! As foundry quickly evolves, it´s nice to have updated and detailed material like this one! Thanks a lot!

  • @GianlucaCasati
    @GianlucaCasati 4 месяца назад

    hi Nadir, I remember we met at Devit conference in Thessaloniki. Your content is always interesting and original, please continue 😊

  • @bytebanditAY
    @bytebanditAY 2 года назад +3

    This was a great intro to foundry, it's a bit similar to hardhat🥂🥂🥂

  • @luxorcode
    @luxorcode Год назад +2

    Great work, I was just wondering what Foundry is, and I am seeing your tutorial 🔥

  • @jingli9232
    @jingli9232 2 года назад +1

    thank you so much for this tutorial, hope to see more tutorials on Foundry

  • @rookie_
    @rookie_ 2 года назад +1

    Many thanks for this easy to follow introduction. Have been using truffle but from my perspective, I think that these solidity tests are cleaner and easier to understand. Also cannot help thinking that on chain deployment of solidity tests on test networks would be an advantage in that it would help mitigate security risks, and be a good starting point for code auditors.

  • @Juwon04
    @Juwon04 9 месяцев назад

    Please make another foundry video. You made it so simple and well explained

  • @luiscallero6288
    @luiscallero6288 5 месяцев назад

    Loved it! Thanks Nader! Now I KNOW Foundry!!
    Fundamentals of course ;)

  • @bensacc
    @bensacc Год назад

    this is really a fantastic tutorial, I've referred back to it several times and it's been an invaluable resource!

  • @MartinMarchev
    @MartinMarchev Год назад

    Great tutorial! Thanks a lot, Nader!

  • @jopadjr
    @jopadjr 10 месяцев назад

    448th..Thanks Nader. You are the best teacher and easy to understand. Would you mind creating more tutorials on ethereum/foundry?

  • @mustafaosman759
    @mustafaosman759 Год назад

    Wish I had seen this sooner!

  • @meka4996
    @meka4996 Год назад

    Very good tutorial! Thank you

  • @sudeepjc
    @sudeepjc Год назад

    good to get started...

  • @cyberdisc0807
    @cyberdisc0807 Год назад

    excellently done sir

  • @kmgwei2663
    @kmgwei2663 2 года назад +2

    What is the name of the code editor theme you were using in this tutorial? It looks cool

  • @elku3775
    @elku3775 2 года назад

    this is very well presented.

  • @Dev.3Role
    @Dev.3Role Год назад +2

    can you share the theme of your vs code

  • @romeosincere117
    @romeosincere117 2 года назад

    Great content!

  • @steiner254
    @steiner254 3 месяца назад

    nice!

  • @Justin-General
    @Justin-General Год назад

    Hey Nadir,
    so say you have multiple contracts in your project, 2 erc20 and 2 erc721 contracts, can you structure this way:
    src/
    -erc20/
    --erc20-1.sol
    --erc20-2.sol
    -erc721/
    --contract1.sol
    --contract2.sol
    This kind of setup is a must for the project, is the the appropriate way? Thanks!

  • @harshvardhanroy24
    @harshvardhanroy24 Год назад +1

    What VS Code theme are you using ser? Gibing hacker feel 😄

  • @josipmatic982
    @josipmatic982 7 месяцев назад

    Hi all, can somebody tell me if I want to debug and find values of local variables inside called method on fork mainnet, how to read inject inside that code and see line by line what is going on. This ofcourse under assumption that I have the source code

  • @user-un6wp6ls5t
    @user-un6wp6ls5t 2 года назад

    Hello,is it possible to make video reviewing new seaport protocol contacts,should be interesting for all

  • @b9283
    @b9283 Год назад +1

    can I have the name of your vscode theme?

  • @mehrdad1068
    @mehrdad1068 2 года назад

    Please make tutorial for EstateRegistry API Decentraland to creating editable and updateble nft land

  • @sanjayojha1
    @sanjayojha1 2 года назад

    So its a good way to move away from JavaScript system?

  • @bertcuyugan
    @bertcuyugan 2 года назад +1

    I like this color theme - what is it?

    • @prizeboy
      @prizeboy 2 года назад +2

      cyberpunk theme

    • @bertcuyugan
      @bertcuyugan 2 года назад +1

      @@prizeboy thanks ma broda!

  • @innocentonyemaenu6353
    @innocentonyemaenu6353 Год назад

    Watching this on september 24 2022 and the ERC721 code has changed, the 'mint' method is now '_mint' and the function is now an internal function and as a result, the tests throws a type error member not found. Any fix? @Nader Dabit

    • @DadepoAderemi
      @DadepoAderemi Год назад +1

      In the test instead of having ERC721 erc721 change it to MyNFT erc721. You will notice in the contract MyNFT is defined to inherit from ERC721, and MyNFT has the mint method.

    • @innocentonyemaenu6353
      @innocentonyemaenu6353 Год назад

      @@DadepoAderemi I already fixed it. Thanks for the response