Creation and Deployment of Smart Contracts on Ethereum Blockchain
Реклама. ООО «ЛитРес», ИНН: 7719571260.
Оглавление
Dr. Hidaia Mahmood Alassouli. Creation and Deployment of Smart Contracts on Ethereum Blockchain
Creation and Deployment of Smart Contracts on Ethereum Blockchain
1. Overview:
2. Blockchain:
3. Solidity variables and types
4. How to setup or install Ethereum on Windows
5. How to compile and deploy smart contract on JavaScriptVM
6. How to install Ganache Blockchain on Windows and deploy smart contract using it:
7. How to compile and deploy Smart Contract on Test Networks:
8. Quick example of deploying ERC20 token smart contract:
9. Getting started tutorial on solidity: a) Data Types and Data Structures
b) Enums
c) Structs
d) Mapping
e) Function Visibility
f) Modifiers
g) Time
h) Sending Ether & Events
j) Smart contract interaction
k) Inheritance
l) Library
m) Including library in separate file
n) SafeMath
10. ERC-20 smart contract and crowd sale (ICO) smart contract:
a. What is an ERC-20 Token?
b. How ERC-20 Tokens Work
c. How a crowd sale (ICO) works
d. Short code of ERC20 smart contract
e. Short code of Crowd sale (ICO) smart contract
11. Creating Ethereum ERC-20 Tokens and Crowd Sales (ICO) without coding with Token Wizard:
12. Example of creating and deploying an ERC20 token on the test and main network!!! a. Write the ERC20 smart contract codes in Remix from https://github.com/ConsenSys
b. Deploy and test the ERC20 smart contract codes:
Отрывок из книги
Dr. Hidaia Mahmood Alassouli
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.
.....
fName = 'Gary';
age = 34;
.....