blockchain-tutorial icon indicating copy to clipboard operation
blockchain-tutorial copied to clipboard

:ear_of_rice: A step-by-step blockchain tutorial in simplified Chinese

Results 6 blockchain-tutorial issues
Sort by recently updated
recently updated
newest added

您好! 我也是一名区块链的初学者,看到了您翻译的这个 blockchain_go 项目,觉得非常有学习实践价值;正好对于rust也有一点了解,就尝试参考 blockchain_go 的源代码用 rust 把这个项目重新写了一遍,希望对其他人来说也可以起到一点参考的作用: Github repo 链接:[github.com/yunwei37/blockchain-rust](https://github.com/yunwei37/blockchain-rust) 目前七个部分的大致工作已经基本完成,后续还会继续完善;

新增文章对应的区块链开发视频教程

开头从数据库取最后一个块的hash是多余的 因为tip已经指向了 ` var lastHash []byte // 首先获取最后一个块的哈希用于生成新块的哈希 err := bc.db.View(func(tx *bolt.Tx) error { b := tx.Bucket([]byte(blocksBucket)) lastHash = b.Get([]byte("l")) return nil }) if err != nil { log.Panic(err) }...

原文是先有蛋,创立账户,中文直接就先交易了。

https://medium.freecodecamp.org/the-authoritative-guide-to-blockchain-development-855ab65b58bc 这篇文章资源挺丰富的,有兴趣的可以读一下。我最近很忙,不一定有空翻译:)