(Part 12) Ethereum Solidity - Using Truffle, Ganache And Zeppelin To Deploy(PT 12)

in #utopian-io5 years ago

Repository

https://github.com/igormuba/EthereumSolidityClasses/tree/master/class12

What Will I Learn?

  • Using truffle to compile and deploy contracts
  • How to leverage zeppelin contracts to build your own
  • Start a local Ethereum testnet with ganache-cli
  • Connect all of the above with each other
  • Configuration to reduce deployment costs

Requirements

  • Internet connection
  • Code editor
  • Browser

Difficulty

  • Intermediate

Tutorial Contents

To get started, you will have to install NPM so we can use the packages from both Zepellin and Truffle without having to manually download and copy, you can get NPM from here
https://www.npmjs.com/get-npm

To check if you already have node/npm on your computer, you can run this two commands on the terminal to see what version you have, if you have any of them you will get an error, then, check the previous step

node -v
npm -v

Use the terminal/command prompt to navigate to the folder where you want to start the project

If you do not have truffle installed, you can get it by simply running the command below

npm install -g truffle

image.png
The above will install truffle globally, which will allow you to create new projects in the future

Now, initiate the truffle and npm development environments on the folder by running the following commands on the terminal

truffle init
npm init

image.png
You will be prompted to add a few personalized settings but they are not necessary at this stage, so just press enter until it finishes

Now we will import the zeppelin libraries so that we can use their contracts as the base for our apps

npm install openzeppelin-solidity

You can see that without touching a single line of Solidity we already have the bases of a lot of contracts, which opens up many doors for personalization and allows for better security.
image.png

Starting our version of ERC20

Inside the directory contracts, create a file a file ourErc20.sol
image.png

Now we will leverage the base contracts from the Zeppelin project to create our own ERC20 token.

Here is the structure of the zeppelin directories
image.png
Inside the token contracts, directory is the base of the ERC20 token.
We will use the libraries from ERC20.sol and from ERC20Detailed.sol to achieve, automatically, the same results from the second tutorial

So, let us import into ourErc20.sol both of the base contracts

pragma solidity ^0.5.0;
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol";

Now, we create our own contract, and it inherits from ERC20 and ERC20Detailed, that are already imported into this file
Please, notice that the order you use to inherit matters to avoid the diamond problem shown in a previous class

contract ourErc20 is ERC20, ERC20Detailed{
    constructor(string memory _name, string memory _symbol, uint8 _decimals) ERC20Detailed(_name, _symbol, _decimals) public{

    }
}

Also, notice on the code above, we pass into the constructor of our own contract the variables (that will be input from another file) that will then be forwarded to ERC20Detailed
image.png
The image above is just to show where the ERC20Detailed will receive the variables from the constructor

Compiling on truffle

You can compile the code on your computer by running the command

truffle compile

image.png

Launching the local testnet

Now let us get started with launching our local test environment, for this we will use the package ganache
To install it, run the command

npm install -g ganache-cli

Now start the ganache local node with

ganache-cli

This will start a local ethereum blockchain that is for testing purposes only, and ganache will also provide you with accounts filled with fake Ethereum so you can do your testings
image.png
Notice that after initiating the ganache-cli, in the end, you will see the port of your local network, usually it is 8545, but if you are already a developer or you are using a future version or whatever other reason, if it is different, take note of it because we will use this port on a configuration file later in this class

Setting up the migration

Now, on the migrations directory
image.png
Migration means the same as "deploying" because it is actually migrating the code to the blockchain, you could think of it like that.
There is the file 1_migrations_token.sol that is the standard
create a second file named 2_migrations_token.sol

This is the code that is inside the migrations 1 file

var Migrations = artifacts.require("./Migrations.sol");

module.exports = function(deployer) {
  deployer.deploy(Migrations);
};

You can copy the code from the 1 to the 2 and just add the new variables, this are the variables that will be sent to the ourErc20.sol as arguments for the constructor, below is the code from the second migrations file with comments on lines that have been changed

var OurErc20 = artifacts.require("./ourErc20.sol");//changed to our contract

module.exports = function(deployer) {
    const _name = "Our ERC20"; //name of our token
    const _symbol = "OUR"; //code of our token
    const _decimals = 2; //how many decimals it has
    deployer.deploy(OurErc20, _name, _symbol, _decimals); //sending the variables as constructor arguments
};

Updating the setting with the local testnet

Now, the last thing is to update the truffle-config.js, that is on the root of the project, with the local network settings
Opening the file you will see that all configurations are commented, so you can just uncomment the ones you want to use, in our case:

     development: {
      host: "127.0.0.1",     // Localhost (default: none)
      port: 8545,            // Standard Ethereum port (default: none)
      network_id: "*",       // Any network (default: none)
     },

image.png

Deployment

To deploy the contract you just need to do

truffle migrate

image.png

The contract is ready to deploy, it is not optimized. If you want your gas cost to be reduced in the future you can

One more thing

If you want to further reduce your gas expenses when deploying a contract, you can use the optimizer settings on the truffle-config.js. On this Stack Exchange post you can read a little bit more about the optimizer. It is something that is easy to use, but hard to understand.

The code for the optimizer is

optimizer: {
          enabled: true, //have to change this setting to true
          runs: 200
        }

The more runs you do the more optimized the deployment will be and the less gas cost you will have but will take longer to compile.

That is a trade that I would take any day though.

Curriculum

(Part 11) Ethereum Solidity - Multisig Contract As Bank,k Multiple Users, And Where To Implement App Logic(PT 11)

Beneficiaries

This post has as beneficiaries
@utopian.pay with 5%
using the SteemPeak beneficiary tool
image.png

Sort:  

Thank you for your contribution @igormuba.
After analyzing your tutorial we suggest the following:

  • In the tutorials it is very important the text to be well written and structured. We suggest you be more careful with the punctuation of your text.

  • We suggest that you give a little more detail in theory about what you will use and why. You could have detailed more about what Truffle, Ganache and Zeppelin are.

Another good tutorial on Ethereum Solidity. Thank you for continuing this excellent work.

We are waiting for your next tutorial.

Your contribution has been evaluated according to Utopian policies and guidelines, as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, click here.


Need help? Chat with us on Discord.

[utopian-moderator]

Thank you for your review, @portugalcoin! Keep up the good work!

Hi @igormuba!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
Feel free to join our @steem-ua Discord server

Hey, @igormuba!

Thanks for contributing on Utopian.
We’re already looking forward to your next contribution!

Get higher incentives and support Utopian.io!
Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via SteemPlus or Steeditor).

Want to chat? Join us on Discord https://discord.gg/h52nFrV.

Vote for Utopian Witness!

Coin Marketplace

STEEM 0.30
TRX 0.12
JST 0.033
BTC 64303.16
ETH 3137.29
USDT 1.00
SBD 3.97