Skip to content

Commit

Permalink
刷新網頁
Browse files Browse the repository at this point in the history
  • Loading branch information
awesome-doge committed Aug 27, 2019
1 parent 353eda3 commit 6d178d9
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
snippets
node_modules
.ipynb_checkpoints
*~
_book
.DS_Store
16 changes: 16 additions & 0 deletions gitbook.sh
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
48 changes: 48 additions & 0 deletions summary.asciidoc
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]

0 comments on commit 6d178d9

Please sign in to comment.