DEV Community

Cover image for Using Remix Ethereum IDE to deploy Smart Contract on Local Blockchain
Suraj Vishwakarma
Suraj Vishwakarma

Posted on • Updated on • Originally published at surajondev.com

Using Remix Ethereum IDE to deploy Smart Contract on Local Blockchain

Introduction

Smart Contracts are the backbone of the web3. You need to have smart contracts to make a dApp. Deploying a smart contract directly on the mainnet is not ideal. You need to test the smart contracts on the local blockchain development network first.

Remix IDE lets you write smart contracts online. They have a compiler to check for errors. They offer a wide variety of deployment options. You can deploy it on Javascript-based Virtual Machine, Injected Web3 for MetaMask, and local blockchain network.

Remix Ethereum IDE

We are going to look into writing, compiling, and deploying smart contracts on the local blockchain network. So let's get started.

Local Blockchain Development Network

Before start writing our smart contract on Remix IDE, we need a local blockchain network. Local blockchain networks are those that simulate a development blockchain network. It is not ideal to deploy smart contracts directly to the main network. Also, the test network is not fast enough. For development purposes, a local blockchain environment is useful to test Ethereum based contracts.

We are going to use the ganache tool to create a local blockchain network. There are two versions of it, terminal-based and GUI-based. Use it according to you.

Ganache

Download: Ganache
Official Docs: Ganache

I have used the GUI version. After installing start a workspace.

Remix IDE

After visiting the Remix IDE site. You have a panel on the left side. On top-left side, you have three tabs - Explorer, Compiler and Deployment.

Remix IDE

Writing Smart Contract

In the explorer tab, you have 3 folders - contracts, scripts and tests, and a readme file. Click on the contracts folder. There are a few examples of smart contracts. Create a new file with any name with the .sol extension.

Writing Smart Contract

This is not a solidity tutorial that's why I am giving you the code. You can learn solidity with Solidity Tutorial - A Full Course on Ethereum, Blockchain Development, Smart Contracts, and the EVM

// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

contract Storage {

    string number;

    function store(string memory num) public {
        number = num;
    }

    function retrieve() public view returns (string memory){
        return number;
    }
}
Enter fullscreen mode Exit fullscreen mode

Solidity Compiler

After writing the solidity code, move to the compiler tab. In the compiler, you can choose the version of the solidity for compiling. Just click on the compile button for the smart contracts. If there will be an error, solve those and run them again.

Solidity Compiler

Deployment

After a successful compiling, move on to the DEPLOY & RUN TRANSACTIONS tab. In the tab, you have various fields such as ENVIRONMENT, ACCOUNT, GAS LIMIT, CONTRACT, and others.

Under the ENVIRONMENT, you have various networks for the deployment of the smart contract. Select the Web3 Provider. It will ask you for an endpoint. For Ganache GUI it's http://127.0.0.1:7545. Make sure the local network is running. If you are using other, check the documentation for it.

Web3 Provider Endpoint

After entering the right endpoint. You can change your account from the ACCOUNT. Now just click on the Deploy button to deploy the smart contract on the selected network.

Deploy Smart Contract

Under the Deployed Contracts section, you can interact with the deployed contacts.

Interaction with Smart Contract

Conclusion

Remix - Ethereum IDE is best to learn, practice, and deploy solidity-based smart contracts. I am recommending you to smart practice the smart contract on it.

I hope this article has helped you. I would love it if you share this with others. Thank you for reading the article.


Weekly Newsletter of SurajOnDev

Weekly Newsletter of SurajOnDev

What you will get?

  • Read of the Week: 5 best articles hand-picked by myself from different platforms. This article will be developer, self-growth, and productivity-oriented.

  • Tool of the Week: A resource or tool link that will help in easing your work.

  • Our latest blog post: Latest 3 blog post from SurajOnDev that is me.

  • Free eBook and Resources: Occasionally you will get free eBook that are by developers and for developers.

Frequency: Weekly
Subscribe Here: Weekly Newsletter of SurajOnDev

Top comments (6)

Collapse
 
yongchanghe profile image
Yongchang He

Nice article! And BTW I notice that your homepage template is very beautiful and well organized. May I ask if the blog template is open source code or not? If yes, could you please let me know the link? Thank you very much! yongchanghe8@gmail.com

Collapse
 
surajondev profile image
Suraj Vishwakarma

My pleasure that you love the article and It's an WordPress theme named Spearhead. Here is the link wordpress.com/theme/spearhead

Collapse
 
yongchanghe profile image
Yongchang He

Hi there, another question is about the posts. I saw your posts on your homepage are folded (by which I mean only shows titles and a image), but my posts cannot fold, which show the full content. Would you please let me know where to configure this? thank you in advance!

Thread Thread
 
surajondev profile image
Suraj Vishwakarma

It's can happen because of the theme. Otherwise, go to theme customization, then check "Content Option" or "Excerpt Settings". There change from full-content to Summary or Excerpt.

Thread Thread
 
yongchanghe profile image
Yongchang He

Thanks again!

Collapse
 
yongchanghe profile image
Yongchang He

Thank you for letting me know this. Have a wonderful day!