├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ ├── 13 │ │ ├── 01.jpeg │ │ ├── 02.jpeg │ │ ├── 03.jpeg │ │ └── 04.jpeg │ ├── 101 │ │ └── 01.jpg │ └── .gitkeep ├── conf.py ├── forever │ ├── 20.safe.md │ ├── 21.gas.md │ └── 22.styleguide.md ├── index.rst ├── make.bat └── source │ ├── 01.hello.md │ ├── 02.type-of-data.md │ ├── 03.variable.md │ ├── 04.function.md │ ├── 05.operator.md │ ├── 06.error.md │ ├── 07.control-flow.md │ ├── 08.loops-and-iteration.md │ ├── 09.event.md │ ├── 10.inheritance.md │ ├── 11.call-other.md │ ├── 12.deploy.md │ ├── 13.interface.md │ ├── 14.library.md │ ├── 15.algorithm.md │ ├── 16.assembly.md │ ├── 17.metadata.md │ ├── 18.abi.md │ └── 19.layout.md ├── requirements.txt └── start.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/101/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/_static/101/01.jpg -------------------------------------------------------------------------------- /docs/_static/13/01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/_static/13/01.jpeg -------------------------------------------------------------------------------- /docs/_static/13/02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/_static/13/02.jpeg -------------------------------------------------------------------------------- /docs/_static/13/03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/_static/13/03.jpeg -------------------------------------------------------------------------------- /docs/_static/13/04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/_static/13/04.jpeg -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/forever/20.safe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/forever/20.safe.md -------------------------------------------------------------------------------- /docs/forever/21.gas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/forever/21.gas.md -------------------------------------------------------------------------------- /docs/forever/22.styleguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/forever/22.styleguide.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/01.hello.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/01.hello.md -------------------------------------------------------------------------------- /docs/source/02.type-of-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/02.type-of-data.md -------------------------------------------------------------------------------- /docs/source/03.variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/03.variable.md -------------------------------------------------------------------------------- /docs/source/04.function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/04.function.md -------------------------------------------------------------------------------- /docs/source/05.operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/05.operator.md -------------------------------------------------------------------------------- /docs/source/06.error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/06.error.md -------------------------------------------------------------------------------- /docs/source/07.control-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/07.control-flow.md -------------------------------------------------------------------------------- /docs/source/08.loops-and-iteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/08.loops-and-iteration.md -------------------------------------------------------------------------------- /docs/source/09.event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/09.event.md -------------------------------------------------------------------------------- /docs/source/10.inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/10.inheritance.md -------------------------------------------------------------------------------- /docs/source/11.call-other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/11.call-other.md -------------------------------------------------------------------------------- /docs/source/12.deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/12.deploy.md -------------------------------------------------------------------------------- /docs/source/13.interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/13.interface.md -------------------------------------------------------------------------------- /docs/source/14.library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/14.library.md -------------------------------------------------------------------------------- /docs/source/15.algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/15.algorithm.md -------------------------------------------------------------------------------- /docs/source/16.assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/16.assembly.md -------------------------------------------------------------------------------- /docs/source/17.metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/17.metadata.md -------------------------------------------------------------------------------- /docs/source/18.abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/18.abi.md -------------------------------------------------------------------------------- /docs/source/19.layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/docs/source/19.layout.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbang/professional-solidity/HEAD/start.sh --------------------------------------------------------------------------------