├── .gitignore ├── 0. How to run go-ethereum in vscode.md ├── 1. The entire process of starting an Ethereum node.md ├── 2. Ethereum struct which implements the Ethereum full node service.md ├── LICENSE ├── README.md └── image ├── Ethereum-struct.png ├── debug-breakpoints.png ├── eth-config-Config.png ├── geth-flowchart.png ├── go-related-tools.png ├── makeFullNode-flowchart.png ├── params-ChainConfig.png ├── set-breakpoints.png └── startNode-flowchart.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/.gitignore -------------------------------------------------------------------------------- /0. How to run go-ethereum in vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/0. How to run go-ethereum in vscode.md -------------------------------------------------------------------------------- /1. The entire process of starting an Ethereum node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/1. The entire process of starting an Ethereum node.md -------------------------------------------------------------------------------- /2. Ethereum struct which implements the Ethereum full node service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/2. Ethereum struct which implements the Ethereum full node service.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Prospect 2 | Illustrate the principle of go-ethereum.
3 | 图解以太坊原理. 4 | -------------------------------------------------------------------------------- /image/Ethereum-struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/Ethereum-struct.png -------------------------------------------------------------------------------- /image/debug-breakpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/debug-breakpoints.png -------------------------------------------------------------------------------- /image/eth-config-Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/eth-config-Config.png -------------------------------------------------------------------------------- /image/geth-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/geth-flowchart.png -------------------------------------------------------------------------------- /image/go-related-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/go-related-tools.png -------------------------------------------------------------------------------- /image/makeFullNode-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/makeFullNode-flowchart.png -------------------------------------------------------------------------------- /image/params-ChainConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/params-ChainConfig.png -------------------------------------------------------------------------------- /image/set-breakpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/set-breakpoints.png -------------------------------------------------------------------------------- /image/startNode-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sure2web3/go-ethereum-illustarted/HEAD/image/startNode-flowchart.png --------------------------------------------------------------------------------