Ethereum Smart Contract Development
eBook - ePub

Ethereum Smart Contract Development

Mayukh Mukhopadhyay

Condividi libro
  1. English
  2. ePUB (disponibile sull'app)
  3. Disponibile su iOS e Android
eBook - ePub

Ethereum Smart Contract Development

Mayukh Mukhopadhyay

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

Become an Ethereum Blockchain developer using a blend of concepts and hands-on implementationsAbout This Book• Understand the Ethereum Ecosystem and its differences from its rich cousin Bitcoin• Explore the Solidity programming language and smart contract optimizations• Get a developer's perspective of Blockchain-as-a-technology with exposure to common challenges faced while building decentralized applicationsWho This Book Is ForIf you want to know the ins and outs of the Ethereum network and build your own decentralized applications, then this book is what you need! This book is for anyone who is interested in blockchain and wants to become an Ethereum developer. It's ideal for existing Ethereum developers who want to develop Ethereum using smart contracts. Basic knowledge of cryptography is expected but is not mandatory.What You Will Learn• Know how to build your own smart contracts and cryptocurrencies• Understand the Solidity language• Find out about data types, control structure, functions, inheritance, mathematical operations, and much more• See the various types of forks and discover how they are related to Ethereum• Get to know the various concepts of web3.js and its APIs so you can build client-side apps• Build a DAO from scratch and acquire basic knowledge of DApps on Ethercast• Be guided through the project so you can optimize EVM for smart contracts• Build your own decentralized applications (DApps) by taking a practical approachIn DetailEthereum is a public, blockchain-based distributed computing platform featuring smart contract functionality. This book is your one-stop guide to blockchain and Ethereum smart contract development.We start by introducing you to the basics of blockchain. You'll learn about hash functions, Merkle trees, forking, mining, and much more. Then you'll learn about Ethereum and smart contracts, and we'll cover Ethereum virtual machine (EVM) in detail. Next, you'll get acquainted with DApps and DAOs and see how they work. We'll also delve into the mechanisms of advanced smart contracts, taking a practical approach.You'll also learn how to develop your own cryptocurrency from scratch in order to understand the business behind ICO. Further on, you'll get to know the key concepts of the Solidity programming language, enabling you to build decentralized blockchain-based applications. We'll also look at enterprise use cases, where you'll build a decentralized microblogging site.At the end of this book, we discuss blockchain-as-a-service, the dark web marketplace, and various advanced topics so you can get well versed with the blockchain principles and ecosystem.Style and approachThis comprehensive guide takes a practical approach by showing you how to implement Blockchain in different Enterprise use cases. You'll quickly brush up on the basics of the blockchain database, then learn the advanced intricacies of smart contract development.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Ethereum Smart Contract Development è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Ethereum Smart Contract Development di Mayukh Mukhopadhyay in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Computer Science e Databases. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2018
ISBN
9781788472623
Edizione
1
Categoria
Databases

Hello World of Smart Contracts

This chapter is a hands-on guide for developing our first smart contract. As an unspoken tradition of software developers since the days of Dennis Ritchie, the creator of C language, we will start with a Hello World program. We will then introduce some basic increment, decrement, and loop operations using smart contracts. We walk through the process of creating our own private blockchain, right from the genesis block, and mining our own ethers. After studying this chapter, you will be able to:
  • Write your first Hello World smart contract
  • Code a contract with basic increment and decrement operation
  • Code a loop
  • Raise an issue on GitHub
  • Create a private blockchain and mine ethers to run a smart contract

A smart contract in seven lines of code

In this section you will learn to code your first smart contract in just seven lines of code (Loc), no hidden terms and conditions. And did I say that you do not need any special software, apart from your web browser, or to spend any real ethers from your pocket? Let's see. I am using Windows 7 (64 bit OS) and a Google Chrome browser:
  1. Open your Google Chrome browser and type remix solidity in Google, as show in Figure 3.1:
Figure 3.1: Google search for remix solidity online compiler
  1. Click the highlighted link in Figure 3.2. You can also type the following in your browser URL box to get to the website directly: http://remix.ethereum.org:
The present remix ethereum webpage is going through rapid changes and version increments. Meanwhile, and older yet stable version is provided to Solidity users for practice in the following link:
https://yann300.github.io/remix04/
    Figure 3.2: Remix—Solidity IDE
    1. Click the plus sign as marked in Figure 3.3 to create a new untitled Solidity (.sol) file.
    Figure 3.3 Untitled Solidity file in remix IDE
    Rename it HelloWorld.sol and confirm the renaming, as shown in Figure 3.4:
    Figure 3.4: Untitled.sol renamed to HelloWorld.sol
    1. Write the following seven lines of code in the HelloWorld.sol file, as shown in Figure 3.5:
    Figure 3.5: HelloWorld.sol
    Choose the JavaScript VM Environment option, as shown in Figure 3.6:
    Figure 3.6: JavaScript VM acting as a blockchain simulator
    1. Click the Create button, as highlighted in Figure 3.7. Voila! You just created your smart contract. The only caveat is that we would be simulating it on our local machine using in-memory, which mimics an Ethereum blockchain:
    Figure 3.7: Our first smart contract of 368 bytes
    1. To execute this contract, we press that myFirstHelloWorld button, as shown in Figure 3.8. We get the desired output: Hello World !
    Figure 3.8: Execution of myFirstHelloWorld function using a smart contract
    1. We can also explore the byte codes, which are generated as a result of this smart contract execution, by pressing the Launch debugger | Instructions or just by clicking the Contract details (bytecode, interface etc) link. Figure 3.9 depicts the 368 bytes of virtual machine code generated by the hello world smart contract execution:
    Figure 3.9: 368 bytes [000 to 367] of machine code for Hello World smart contract

    Remix in a nutshell

    So, what is this remix? In simple words, it is a browser-based Integrated Development Environment (IDE) for writing smart contracts in Solidity. It has an integrated compiler, a runtime virtual environment without any server-side component, an integrated debugger, an integrated testing environment, and a static code analysis tool. Previously, it used to be called Browser-Solidity. It can not only simulate a blockchain, but also highlights syntax and errors, hosts multiple Solidity files, and deploys contracts along with visible byte codes and application binary interface (ABI), of which details can be found in later chapters.
    However, I promised less theory and more hands-...

    Indice dei contenuti