Book Image

Mastering Ethereum

By : Merunas Grincalaitis
Book Image

Mastering Ethereum

By: Merunas Grincalaitis

Overview of this book

Ethereum is one of the commonly used platforms for building blockchain applications. It's a decentralized platform for applications that can run exactly as programmed without being affected by fraud, censorship, or third-party interference. This book will give you a deep understanding of how blockchain works so that you can discover the entire ecosystem, core components, and its implementations. You will get started by understanding how to configure and work with various Ethereum protocols for developing dApps. Next, you will learn to code and create powerful smart contracts that scale with Solidity and Vyper. You will then explore the building blocks of the dApps architecture, and gain insights on how to create your own dApp through a variety of real-world examples. The book will even guide you on how to deploy your dApps on multiple Ethereum instances with the required best practices and techniques. The next few chapters will delve into advanced topics such as, building advanced smart contracts and multi-page frontends using Ethereum blockchain. You will also focus on implementing machine learning techniques to build decentralized autonomous applications, in addition to covering several use cases across a variety of domains such as, social media and e-commerce. By the end of this book, you will have the expertise you need to build decentralized autonomous applications confidently.
Table of Contents (17 chapters)
Free Chapter
1
Section 1: Blockchain - Ethereum Refresher
5
Section 2: Decentralized Application Development Workflow
12
Section 3: Ethereum Implementations

Using Kovan for smart contract development

Kovan is a testnet that was created by the guys at Parity, who wanted a new type of PoA network where developers could deploy their smart contracts, knowing that they will stay running endlessly given that this network is highly secure. This network is the fastest of them all because it has a 4-second block time, which makes testing a breeze, since you don't have to wait for long confirmation times.

It was born because of the attack conducted on Ropsten in 2017 when Parity realized that developers were losing an important tool in their arsenal, given that they need to test their smart contracts on the most realistic scenarios possible to emulate blockchain limitations.

Kovan is one of the most active networks, since they provide Kovan Improvement Proposals, known as KIPs, where users can submit GitHub issues on the repository (https...