January 2020
Intermediate to advanced
530 pages
11h 11m
English
We will start by creating a .sol file in your contracts directory. Let's name this file MoolahCoin.sol:
pragma solidity ^0.5.2;
import "openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol";import "openzeppelin-solidity/contracts/token/ERC20/ERC20Capped.sol"; import "openzeppelin-solidity/contracts/ownership/Ownable.sol";
The imported contracts implement the following functionalities:
Read now
Unlock full access