go-ethereum以太坊源码解析完整版

go-ethereum-code-analysis

目录

  • go-ethereum代码阅读环境搭建
  • 以太坊黄皮书 符号索引
  • rlp源码解析
  • trie源码分析
  • ethdb源码分析
  • rpc源码分析
  • p2p源码分析
  • eth协议源码分析
  • core源码分析
    • 区块链索引 chain_indexer源码分析
    • 布隆过滤器索引 bloombits源码分析
    • 以太坊的trie树管理 回滚等操作 state源码分析
    • 交易执行和处理部分源码分析
    • vm 虚拟机源码分析
      • 虚拟机堆栈和内存数据结构分析
      • 虚拟机指令,跳转表,解释器源码分析
      • 虚拟机源码分析
    • 待确认交易池的管理txPool
      • 交易执行和处理部分源码分析
      • 交易执行和处理部分源码分析
    • 创世区块的源码分析
    • blockchain 源码分析
  • miner挖矿部分源码分析CPU挖矿
  • 以太坊测试网络Clique_PoA介绍

原文链接:https://github.com/ZtesoftCS/go-ethereum-code-analysis

以太坊源码:https://github.com/ethereum/go-ethereum

你可能感兴趣的:(区块链,以太坊,源码解析)