forked from ethereumbook/ethereumbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awesome-doge
committed
Aug 27, 2019
1 parent
353eda3
commit 6d178d9
Showing
3 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,6 @@ | |
snippets | ||
node_modules | ||
.ipynb_checkpoints | ||
*~ | ||
_book | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
git checkout develop | ||
gitbook build | ||
git add . | ||
git commit -m $1 | ||
git push -u origin develop | ||
git branch -D gh-pages | ||
git branch -r -d origin/gh-pages | ||
git push origin :gh-pages | ||
git checkout --orphan gh-pages | ||
git rm --cached -r . | ||
git clean -df | ||
cp -r _book/* . | ||
git add . | ||
git commit -m $1 | ||
git push -u origin gh-pages | ||
git checkout develop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
= Mastering Ethereum | ||
|
||
. link:preface.asciidoc[Preface] | ||
|
||
. link:glossary.asciidoc[Quick Glossary] | ||
|
||
. link:01what-is.asciidoc[Chapter 1: What Is Ethereum?] | ||
|
||
. link:02intro.asciidoc[Chapter 2: Ethereum Basics] | ||
|
||
. link:03clients.asciidoc[Chapter 3: Ethereum Clients] | ||
|
||
. link:04keys-addresses.asciidoc[Chapter 4: Cryptography] | ||
|
||
. link:05wallets.asciidoc[Chapter 5: Wallets] | ||
|
||
. link:06transactions.asciidoc[Chapter 6: Transactions] | ||
|
||
. link:07smart-contracts-solidity.asciidoc[Chapter 7: Smart Contracts and Solidity] | ||
|
||
. link:08smart-contracts-vyper.asciidoc[Chapter 8: Smart Contracts and Vyper] | ||
|
||
. link:09smart-contracts-security.asciidoc[Chapter 9: Smart Contract Security] | ||
|
||
. link:10tokens.asciidoc[Chapter 10: Tokens] | ||
|
||
. link:11oracles.asciidoc[Chapter 11: Oracles] | ||
|
||
. link:12dapps.asciidoc[Chapter 12: Decentralized Applications (DApps)] | ||
|
||
. link:13evm.asciidoc[Chapter 13: The Ethereum Virtual Machine] | ||
|
||
. link:14consensus.asciidoc[Chapter 14: Consensus] | ||
|
||
[appendix] | ||
. link:appdx-forks-history.asciidoc[Appendix A: Ethereum Fork History] | ||
|
||
[appendix] | ||
. link:appdx-standards-eip-erc.asciidoc[Appendix A: Ethereum Standards] | ||
|
||
[appendix] | ||
. link:appdx-evm-opcodes-gas.asciidoc[Appendix A: Ethereum EVM Opcodes and Gas Consumption] | ||
|
||
[appendix] | ||
. link:appdx-dev-tools.asciidoc[Appendix A: Development Tools, Frameworks, and Libraries] | ||
|
||
[appendix] | ||
. link:appdx-web3js-tutorial.asciidoc[Appendix A: web3.js Tutorial] |