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