How to integerate smart contracts with frontend - web and mobile application

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

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

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

    80th... Thanks Sean

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

    Another great video. 😊

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

    thanks my chinese broder

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

    Great video!

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

    Awesome

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

    how does contacts[i] + 1 sends the index to the end of the array? This will only make [i] the next element thus duplicating the element. Then pop() will remove the last element but not [i].

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

      You're correct, you want something like this, removing the for loop also makes it use much less gas:
      function smartRemove(uint _index) public onlyOwner {
      require(_index < contacts.length, "index out of bounds");
      contacts[_index] = contacts[contacts.length - 1]; //Copy last element to index, overwriting it
      contacts.pop(); // Remove last element
      }

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

    Awesome content! I have a quick question: If would have a video content website, and my own NFT collection,I wonder if there is a way to allow only my NFT holders to see the content where connected wallets without my NFT in it would only see an image of a thumbnail and a message that they will need to hold the NFT to see the video content. Thank you!

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

    Hello,... i'm asking myself "what's about the scaling solution - is done by the EVM"...that's something i don't understand so far.....thanks for help....

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

    Great video,how do I change a receiver wallet on a wallet drainer smart contract ?

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

      Hey would you like to collaborate for hackathon ?

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

    Nice tutorial,thanks, can we have ipfs storage(thirdweb storage ) tutorial in similar manner web+mobille

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

      Thank you! We will put the idea down on our list of potential videos.

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

    When I try to deploy smart contract, it ask for API secret key in terminal, what should I do ?

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

      You will need to generate an API key through thirdweb to get a secret key. This video here is a guide on how to do that: ruclips.net/video/G3bvXfE-OMg/видео.html

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

    8

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

    do a solana tutorial

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

      only if you say pretty please, broseph!

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

      where are your manners joseph😂@@shawazonfire

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

    Hi thanks for ur videos, they v being very helpful. Can you make a video on how to create a swap and bridge app using thirdweb.
    How can I contact you privately

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

    I cant do it, the thirdweb documentation is outdated, i keep getting errors with no answer anywhere, this is so frustrating

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

      Sorry about the frustration. We do have an updated version using our latest SDK here: ruclips.net/video/INsBrf5gRFM/видео.html

  • @delta-gg
    @delta-gg Год назад

    Running:
    npx thirdweb@latest create contract
    Works away and then gives this error:
    Unexpected token '&&='