├── .gitignore ├── Appendix.md ├── GasEcon.md ├── Makefile ├── PoW.md ├── README.md ├── examples ├── Running_pyethereum.rst ├── brokensend.py ├── build-mantra.sh ├── minimum_gas.py ├── minimum_gas.se ├── namecoin_example.py ├── sha3_waste.py ├── trie_bust.se ├── trie_bust_example.py └── trie_debug.py ├── images ├── diagrams.graffle ├── figure_1.png ├── figure_2.png ├── gpufriendly.png ├── illustration_badlayout.png ├── mining-profit-1.png ├── mining-profit-2.png ├── mining-profit-3.png ├── mining-profit-4.png ├── mining-profit-5.png └── yellowpaper-orig.png ├── misc ├── RaisingGasLimit.md ├── notes-feb1.txt └── notes.md ├── sim.py └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/.gitignore -------------------------------------------------------------------------------- /Appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/Appendix.md -------------------------------------------------------------------------------- /GasEcon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/GasEcon.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/Makefile -------------------------------------------------------------------------------- /PoW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/PoW.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/README.md -------------------------------------------------------------------------------- /examples/Running_pyethereum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/Running_pyethereum.rst -------------------------------------------------------------------------------- /examples/brokensend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/brokensend.py -------------------------------------------------------------------------------- /examples/build-mantra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/build-mantra.sh -------------------------------------------------------------------------------- /examples/minimum_gas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/minimum_gas.py -------------------------------------------------------------------------------- /examples/minimum_gas.se: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/minimum_gas.se -------------------------------------------------------------------------------- /examples/namecoin_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/namecoin_example.py -------------------------------------------------------------------------------- /examples/sha3_waste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/sha3_waste.py -------------------------------------------------------------------------------- /examples/trie_bust.se: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/trie_bust.se -------------------------------------------------------------------------------- /examples/trie_bust_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/trie_bust_example.py -------------------------------------------------------------------------------- /examples/trie_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/examples/trie_debug.py -------------------------------------------------------------------------------- /images/diagrams.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/diagrams.graffle -------------------------------------------------------------------------------- /images/figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/figure_1.png -------------------------------------------------------------------------------- /images/figure_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/figure_2.png -------------------------------------------------------------------------------- /images/gpufriendly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/gpufriendly.png -------------------------------------------------------------------------------- /images/illustration_badlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/illustration_badlayout.png -------------------------------------------------------------------------------- /images/mining-profit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/mining-profit-1.png -------------------------------------------------------------------------------- /images/mining-profit-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/mining-profit-2.png -------------------------------------------------------------------------------- /images/mining-profit-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/mining-profit-3.png -------------------------------------------------------------------------------- /images/mining-profit-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/mining-profit-4.png -------------------------------------------------------------------------------- /images/mining-profit-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/mining-profit-5.png -------------------------------------------------------------------------------- /images/yellowpaper-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/images/yellowpaper-orig.png -------------------------------------------------------------------------------- /misc/RaisingGasLimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/misc/RaisingGasLimit.md -------------------------------------------------------------------------------- /misc/notes-feb1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/misc/notes-feb1.txt -------------------------------------------------------------------------------- /misc/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/misc/notes.md -------------------------------------------------------------------------------- /sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/sim.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeastAuthority/ethereum-analyses/HEAD/style.css --------------------------------------------------------------------------------