An open API service indexing awesome lists of open source software.

https://github.com/ebazhanov/b9lab-ethereum-developer-course

Ethereum (Solidity) developer course, quiz
https://github.com/ebazhanov/b9lab-ethereum-developer-course

ethereum-blockchain ethereum-contract ethereumjs question-answering quiz

Last synced: 3 months ago
JSON representation

Ethereum (Solidity) developer course, quiz

Awesome Lists containing this project

README

        

Ethereum-Developer-Course
------
> https://academy.b9lab.com/courses/

- [google-driver-archive](https://drive.google.com/drive/u/2/folders/1J_li7m4BQdUXWfHGQu349MqSF358EMIV)
- [github-dashboard](https://github.com/users/Ebazhanov/projects/1)

Course projects:
---------------------
- [Splitter](https://github.com/Ebazhanov/b9lab-project1-splitter)
- [Remmitance](https://github.com/Ebazhanov/b9lab-project2-rock-paper-scissors)
- [Rock-paper-scissors](https://github.com/Ebazhanov/b9lab-Project3-rock-paper-scissors)
- [Final project](https://github.com/monkrus/solidity_test)

*****************************************************************************************************

Progress:
---------
##### Module 13 - Final Exam
- Final Exam Quiz: ...
- Debugging Exercises: ...
- Final Project: ...

##### Module 12 - Ethics
- Practice: ...

##### Module 11 - Ecosystem
- Practice: ...

##### Module 10 - Code and Projects
- Practice: ...

##### Module 9 - Project 3
- Practice: [RockPaperScissors]()

##### Module 8 - Coding and Patterns
- Practice: ...

##### Module 7 - Project 2
- Practice: [Remittance](https://github.com/Ebazhanov/smart-contract-remittance-b9lab)

##### Module 6 - Truffle and Coding
- Practice: [Non-Truffle-Tests](https://github.com/Ebazhanov/smart-contract-splitter-b9lab/tree/master/app-non-truffel)
- Practice: [Webpack-Build-for-Web](https://github.com/Ebazhanov/smart-contract-splitter-b9lab/tree/master/app-web)

##### Module 5 - Project 1
- Practice: [Splitter](https://github.com/Ebazhanov/smart-contract-splitter-b9lab)

##### Module 4 - Web3 and Truffle
- Practice: done
- Pop Quiz-1: [done](https://github.com/Ebazhanov/b9lab-ethereum-developer-course/blob/master/Module-04/Pop-Quiz-4.1.md)
- Pop Quiz-2: [done](https://github.com/Ebazhanov/b9lab-ethereum-developer-course/blob/master/Module-04/Pop-Quiz-4.2.md)

##### Module 3 - Contracts
- Practice: done
- Pop Quiz: [done](https://github.com/Ebazhanov/b9lab-ethereum-developer-course/tree/master/Module-03)

##### Module 2 - Ethereum Basics?
- Practice: done
- Pop Quiz: [done](https://github.com/Ebazhanov/b9lab-ethereum-developer-course/blob/master/Module-02/Pop-Quiz-2.md)

##### Module 1 'What is Blockchain'
- Practice: done
- Pop Quiz: [done](https://github.com/Ebazhanov/b9lab-ethereum-developer-course/blob/master/Module-01/PracticeQuiz-1.md)

- - - - - - - - - - - - - - - - - - - - -

## COURSE CURRICULUM
Certified Ethereum Developer Course
-----------------------------------
#### BLOCKCHAIN FOUNDATION
This course covers the very basics of blockchain technology, from data structures to live projects. Serves as both a reminder for participants who know the basics and a clear introduction for those who don't.

* What is blockchain
* What are transactions and blocks
* How do P2P systems operate?
* The most prominent consensus mechanisms
* Difference between private, consortium and public networks
* What does the data structure look like?
* How do Smart Contracts work?
* What is the Ethereum Virtual Machine
* What is a Hash?
* How do public/private keys work?
* What is a Merkle tree?
* What is the double spend problem?
#### ETHEREUM BASICS
The window into a blockchain network is the node.This course teaches students how to run a node and how to install, configure and use the most common Ethereum clients.

* The Ethereum ecosystem, DApps and DAOs
* What is Mist and how does it work?
* What is Ether, an account, a Faucet?
* Compile, deploy and instantiate contracts
* Configuring, running and working with the go-Ethereum client
* Account management and mining
* Understanding the different stages of a contract deployment
* How to interact with a contract once deployed
* What does the set up process for a private network look like?
#### SOLIDITY
The most prominent language used for the development of smart contracts is Solidity. The course covers all aspects from value types and inheritance to more exotic features and optimisation.

* Contract classes, functions and conditionals
* Inheritance & abstract contracts
* Libraries
* Types & Optimisation
* Global Variables
* Debugging
#### WEB3 & TRUFFLE
The toolkit to aid the development of decentralised applications is growing. This course introduces the two currently most relevant and covers everything from installation and setup to custom configuration and scripting.

* Building an interface to interact with a smart contract
* Setting up event-driven interfaces
* Adapting Truffle's default behaviour
* Write functional tests for smart contracts
* How to manually test contract functionality?
* Instantiate Web3 and communicate with a contract from an HTML page
* Use client side signing and remote nodes for light DApps
* How does Web3 and Truffle work with Angular.js?