With the MetaMask account created and test ether deposited to the account, we can start deploying the smart contract. The process involves the following steps:
- After unlocking Web3 on MyCrypto and connecting to MetaMask, the deployment page is shown. MyCrypto takes the Byte Code of our smart contract:
- We will use the subcurrency example from the following Solidity v0.5.7 document as shown here: https://solidity.readthedocs.io/en/v0.5.7/introduction-to-smart-contracts.html#subcurrency-example. Let's take a look at what we have in this piece of code.
The first line shows that the code supports Solidity version ...