Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ztesoftcs/go-ethereum-code-analysis
https://github.com/ztesoftcs/go-ethereum-code-analysis
analysis chinese code ethereum
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ztesoftcs/go-ethereum-code-analysis
- Owner: ZtesoftCS
- Created: 2017-10-20T02:35:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-24T11:44:31.000Z (10 months ago)
- Last Synced: 2025-01-16T21:05:57.660Z (5 days ago)
- Topics: analysis, chinese, code, ethereum
- Size: 2.84 MB
- Stars: 2,891
- Watchers: 204
- Forks: 1,056
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-ethereum-code-analysis
**希望能够分析以太坊的代码来学习区块链技术和GO语言的使用**
分析[go-ethereum](https://github.com/ethereum/go-ethereum)的过程,我希望从依赖比较少的底层技术组件开始,慢慢深入到核心逻辑。
## 目录
- [go-ethereum代码阅读环境搭建](/go-ethereum源码阅读环境搭建.md)
- [以太坊黄皮书 符号索引](a黄皮书里面出现的所有的符号索引.md)
- [rlp源码解析](/rlp源码解析.md)
- [trie源码分析](/trie源码分析.md)
- [ethdb源码分析](/ethdb源码分析.md)
- [rpc源码分析](/rpc源码分析.md)
- [p2p源码分析](/p2p源码分析.md)
- [eth协议源码分析](/eth源码分析.md)
- core源码分析
- [区块链索引 chain_indexer源码分析](/core-chain_indexer源码解析.md)
- [布隆过滤器索引 bloombits源码分析](/core-bloombits源码分析.md)
- [以太坊的trie树管理 回滚等操作 state源码分析](/core-state源码分析.md)
- [交易执行和处理部分源码分析](/core-state-process源码分析.md)
- vm 虚拟机源码分析
- [虚拟机堆栈和内存数据结构分析](/core-vm-stack-memory源码分析.md)
- [虚拟机指令,跳转表,解释器源码分析](/core-vm-jumptable-instruction.md)
- [虚拟机源码分析](/core-vm源码分析.md)
- 待确认交易池的管理txPool
- [交易执行和处理部分源码分析](/core-txlist交易池的一些数据结构源码分析.md)
- [交易执行和处理部分源码分析](/core-txpool交易池源码分析.md)
- [创世区块的源码分析](/core-genesis创世区块源码分析.md)
- [blockchain 源码分析](/core-blockchain源码分析.md)
- [miner挖矿部分源码分析CPU挖矿](/miner挖矿部分源码分析CPU挖矿.md)
- [pow一致性算法](/pow一致性算法.md)
- [以太坊测试网络Clique_PoA介绍](/以太坊测试网络Clique_PoA介绍.md)