Creation and Deployment of Smart Contracts on Ethereum Blockchain
eBook - ePub

Creation and Deployment of Smart Contracts on Ethereum Blockchain

Dr. Hidaia Mahmood Alassouli

Share book
  1. 81 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Creation and Deployment of Smart Contracts on Ethereum Blockchain

Dr. Hidaia Mahmood Alassouli

Book details
Book preview
Table of contents
Citations

About This Book

This work explains briefly the creation and deployment Of Smart Contract on Ethereum Blockchain. The work consists from the following sectionsBlockchainSolidity variables and types How to Setup or Install Ethereum on WindowsHow to compile and deploy smart contract on JavaScriptVMHow to install Ganache Blockchain on Windows and deploy smart contract using it.How to compile and deploy Smart Contract on Test Networks, Quick example of deploying ERC20 token smart contract.Getting started tutorial on SolidityCreating ERC-20 smart contract and crowd sale (ICO) smart contract without coding ERC-20 smart contract and crowd sale (ICO) smart contract: Creating Ethereum ERC-20 Tokens and Crowd Sales (ICO) without coding with Token Wizard: Example of creating and deploying an ERC20 token on the test and main network!!!

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on ā€œCancel Subscriptionā€ - itā€™s as simple as that. After you cancel, your membership will stay active for the remainder of the time youā€™ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlegoā€™s features. The only differences are the price and subscription period: With the annual plan youā€™ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, weā€™ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Creation and Deployment of Smart Contracts on Ethereum Blockchain an online PDF/ePUB?
Yes, you can access Creation and Deployment of Smart Contracts on Ethereum Blockchain by Dr. Hidaia Mahmood Alassouli in PDF and/or ePUB format, as well as other popular books in Informatique & Informatique client-serveur. We have over one million books available in our catalogue for you to explore.

Information

1. Overview:

Ā 
This work explains briefly the creation and deployment Of Smart Contract on Ethereum Blockchain. The work consists from the following sections
  • Blockchain
  • Solidity variables and types
  • How to Setup or Install Ethereum on Windows
  • How to compile and deploy smart contract on JavaScriptVM
  • How to install Ganache Blockchain on Windows and deploy smart contract using it.
  • How to compile and deploy Smart Contract on Test Networks,
  • Quick example of deploying ERC20 token smart contract.
  • Getting started tutorial on Solidity
  • Creating ERC-20 smart contract and crowd sale (ICO) smart contract without coding
  • ERC-20 smart contract and crowd sale (ICO) smart contract:
  • Creating Ethereum ERC-20 Tokens and Crowd Sales (ICO) without coding with Token Wizard:
  • Example of creating and deploying an ERC20 token on the test and main network!!!
Ā 
Ā 

2. Blockchain:

Ā 
A blockchain is a digital record of transactions. The name comes from its structure, in which individual records, called blocks, are linked together in single list, called a chain. Blockchains are used for recording transactions made with cryptocurrencies, such as Bitcoin, and have many other applications.
Each transaction added to a blockchain is validated by multiple computers on the Internet. These systems, which are configured to monitor specific types of blockchain transactions, form a peer-to-peer network. They work together to ensure each transaction is valid before it is added to the blockchain. This decentralized network of computers ensures a single system cannot add invalid blocks to the chain.
When a new block is added to a blockchain, it is linked to the previous block using a cryptographic hash generated from the contents of the previous block. This ensures the chain is never broken and that each block is permanently recorded. It is also intentionally difficult to alter past transactions in blockchain since all the subsequent blocks must be altered first.
  • Blockchain Uses: While blockchain is widely known for its use in cryptocurrencies such as Bitcoin, Litecoin, and Ether, the technology has several other uses. For example, it enables "smart contracts," which execute when certain conditions are met. This provides an automated escrow system for transactions between two parties. Blockchain can potentially be used to allow individuals to pay each other without a central clearing point, which is required for ACH and wire transfers. It has potential to greatly increase the efficiency of stock trading by allowing transactions to settle almost instantly instead of requiring three or more days for each transaction to clear. Blockchain technology can also be used for non-financial purposes. For example, the InterPlanetary File System (IFPS) uses blockchain to decentralize file storage by linking files together over the Internet. Some digital signature platforms now use blockchain to record signatures and verify documents have been digitally signed. Blockchain can even be used to protect intellectual property by linking the distribution of content to the original source.
  • Blockchain is decentralized database that consists from records and data. The entire data is spread out in bounch of distributed computers to end to be pear to pear p2p network. The records in these databases are stored in form of blocks which linked together in secured way.
  • The bitcoin blockchain stores data specific to keep track of crypto currencies balances between different parties.
  • Ethereum block chain can store much more deep data than bitcoin block chain. Ethereum block chain allows building decentralized apps. These decentralized apps defined by smart contracts. So smart contract allows individuals to exchange information in trusted confident free manner without relying on third party as bank or lawyer or other way. So these Ethereum smart contracts stored in special transections in Ethereum blockchain which can be used then to build applications. So you can think on smart contracts as decentralized api's. As smart contracts stored in Ethereum blockchains, they need to be validated or mined as any other transactions. So there is small costs associated with deploying smart contracts.
  • How to code smart contract. We do that with solidity. Solidity is a code used. Solidity is a language used to code smart contract. And syntax is similar to java script and is designed with Ethereum virtual machine in mind. So we will use solidity to create smart contract in web based ide called remex
Ā 

3. Solidity variables and types

  • You can write the solidity and test code in https://remix.ethereum.org/.
  • Here screen of https://remix.ethereum.org
Image
  • Create new contract. I called it Coursetro.
  • Start off by writing (or pasting) the following code:
pragma solidity ^0.4.18;
contract Coursetro {
}
The very first line defines the version of solidity you're going to use.
Next, you define the contract and its name and open it up like a JavaScript class.
  • On the right side of the browser under the Run tab, you will see a Deploy button. Click on this. You will notice that underneath the Deploy button shows a new section with the name of the contract and "at 0x..." (memory):
Image
  • This means that the smart contract (yes, it's not very smart at this point) lives at an address. To see this full address along with other information, in the debugger if you click on the Details button, it will provide you with more information:
  • Notice there's a contractAddress, this is where the smart contract actually lives. No, it's not live on the Ethereum Blockchain because right now, we're simply working within the Javascript EVM.
  • Also notice gas. Every time a contract is deployed and modified, nodes on the Ethereum network must verify the contract. It's referred to as being redundantly parallel, as a way to reach consensus.Gas is the name for the execution fee that senders of transactions (in our case, senders of a smart contract transaction) will pay for verification.
  • Elaborating on this further, from etherdocs.org:
  • "Gas is the name for the execution fee that senders of transactions need to pay for every operation made on an Ethereum blockchain. The name gas is inspired by the view that this fee acts as cryptofuel, driving the motion of smart contracts. Gas is purchased for ether from the miners that execute the code. Gas and ether are decoupled deliberately since units of gas align with computation units having a natural cost, while the price of ether generally fluctuates as a result of market forces. The two are mediated by a free market: the price of gas is actually decided by the miners, who can refuse to process a transaction with a lower gas price than their minimum limit. To get gas you simply need to add ether to your account. The Ethereum clients automatically purchase gas for your ether in the amount you specify as ...

Table of contents