Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Golang: How to Build a Blockchain in Go Guide, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:15:44
    Current Economy's Need for Blockchain Engineers and Hiring Process
  • Урок 2. 00:05:46
    Before Taking this Course
  • Урок 3. 00:05:16
    Demonstration of How Blockchain Can Be Used For Crytocurrency Money Transfers
  • Урок 4. 00:07:07
    What is Blockchain?
  • Урок 5. 00:05:08
    What You'll Need to Start Building
  • Урок 6. 00:07:07
    How to Create a Block
  • Урок 7. 00:06:08
    How to Create a Blockchain Struct
  • Урок 8. 00:12:23
    How to Calculate the Hash of a Block
  • Урок 9. 00:12:41
    How to Add a Transaction
  • Урок 10. 00:03:02
    What is Proof of Work, Consensus Algorithm, and Nonce
  • Урок 11. 00:08:18
    How to Derive the Nonce
  • Урок 12. 00:08:53
    All About Mining
  • Урок 13. 00:03:41
    Calculating the Transaction Total
  • Урок 14. 00:04:58
    Private Key, Public Key, and ECDSA
  • Урок 15. 00:11:38
    How to Create Wallets
  • Урок 16. 00:02:21
    How to Create Addresses for Blockchain
  • Урок 17. 00:07:28
    Creating Blockchain Addresses
  • Урок 18. 00:07:22
    Signatures for Transactions
  • Урок 19. 00:13:15
    Transaction Verification
  • Урок 20. 00:10:04
    Launching WEB server
  • Урок 21. 00:07:42
    How to create Blockchain API
  • Урок 22. 00:07:29
    Launching UI Server for Wallets
  • Урок 23. 00:04:37
    Creating Wallet UI
  • Урок 24. 00:08:56
    Creating Wallets
  • Урок 25. 00:09:43
    Sending Transactions from UI
  • Урок 26. 00:06:31
    Decoding process with Json
  • Урок 27. 00:08:12
    Taking ECDSA Related Data and Converting into Struct
  • Урок 28. 00:07:40
    Data sending with HTTP client
  • Урок 29. 00:09:32
    Creating Transaction API
  • Урок 30. 00:05:36
    Creating Mining API
  • Урок 31. 00:07:01
    Automating mining execution
  • Урок 32. 00:04:27
    Creating API that will let the blockchain server return the cryptocurrency total
  • Урок 33. 00:06:33
    Creating API that will let the wallet server return the cryptocurrency totals
  • Урок 34. 00:04:03
    Creating UI to display the cryptocurrency totals
  • Урок 35. 00:12:46
    Search for other blockchain nodes
  • Урок 36. 00:09:24
    Automatic registration of blockchain nodes
  • Урок 37. 00:11:24
    Synchronizing transactions
  • Урок 38. 00:02:57
    What is consensus?
  • Урок 39. 00:04:54
    Blockchain verification
  • Урок 40. 00:09:53
    Resolving conflicts - the longest-chain rule
  • Урок 41. 00:06:27
    Creating consensus API
  • Урок 42. 00:03:57
    What is 51% attack?
  • Урок 43. 00:06:05
    Final demonstration