How to Start Developing on Hedera: Back to the Basics

Поделиться
HTML-код
  • Опубликовано: 3 авг 2024
  • In this tutorial, you'll learn how to start developing on the Hedera network. We'll cover the following four items:
    1. How to create an account on the Hedera Portal to get access to testnet HBAR to experiment with code
    2. Environment setup (for JavaScript developers)
    3. Create a new account using the JS SDK
    4. Transfer HBAR to a newly created account and verify its balance
    After that, you'll be ready to further explore Hedera development (token service, consensus service, or smart contract service).
    For more information, visit:
    hedera.com/blog/how-to-develo...
    00:00 Outline
    01:00 Hedera Portal
    01:46 Environment Setup
    05:08 Create account using JS SDK
    08:15 Transfer Hbar
    12:11 Look up transaction via Hashscan.io
    12:57 Further learning and how to use the docs
    Developer resources:
    Quickstart: hedera.com/get-started
    Create a Testnet Account: portal.hedera.com/register
    Repo: github.com/hashgraph
    Docs: docs.hedera.com/guides​
    Whitepapers: hedera.com/papers​
    FAQ: help.hedera.com
    Chat: hedera.com/discord​
    Join our community to learn more:
    Twitter: / hedera​
    Telegram: t.me/hederahashgraph​
    Discord: hedera.com/discord​
    LinkedIn: / hashgraph
    Facebook: / hashgraph​
    Reddit: / hedera
    RUclips: / hederahashgraph
    #Hedera #Hashgraph​ #HBAR
  • НаукаНаука

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

  • @jacqueskorb879
    @jacqueskorb879 2 месяца назад

    Thank you!

  • @pauldumitru8002
    @pauldumitru8002 День назад

    Great video, but need promotion and need marketing to be spread.
    All the best ✌️

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

    this is awesome, thank you for uploading this. It's also nice to see that Hedera is an MLH partner, i am new to web3 and will start developing projects using it for hackathons.

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

    nice!

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

    Long HBAR !

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

    will you continue with a series like this?

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

    🚀

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

    🙏

  • @Supremax67
    @Supremax67 Год назад +5

    A comment here becomes the RUclips algorithm demands it.

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

    hi, will there be python sdk support in future?

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

    I’m a total beginner with zero coding experience but I really like the Hedera Network and Hbar. Do I need to learn any other programming languages before starting on Hedera?

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

      bit of java

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

      Thanks man👍🏻

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

      a bit of java is always nice to have when introducing yourself & i would say it’s rather useful to possess at least users like me

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

    The wallet HashPack can be connected to the TestNET?

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

    the hedera portal page is not functional properly for me i cant create testnet account.when i click start building the page doesnt respond . im in eligible country and proper email address . portal page create a testnet account isnt functioning

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

    This guy is putting his environment variables inside quotes for a string. Other tutorials I saw just paste the data. Is there any difference?

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

      If you paste in the data without “” you will need to convert it into a string later in the index.js file since the function to create an account its parameter is in a string format, so its best to place it in between “” from the .env file instead of having it to convert all the time later

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

    Storing secrets in a .env file is a major NO!

    • @min11benja
      @min11benja 7 месяцев назад +1

      As long as you add the .env file to the gitignore list I don’t see why not ….can you elaborate why its a major NO please?