Join
May 17, 2026
Login

Deploy a complex smart contract easily and quickly with Remix IDE

Deploy a complex smart contract easily and quickly with Remix IDE

Deploy a complex smart contract easily and quickly with Remix IDE

Deploy a complex smart contract easily and quickly with Remix IDE

All source code for this tutorial is published at https://github.com/trongdth/zero_user_gas_fee

What is Remix IDE:

Remix is a powerful, open source tool that helps you write Solidity contracts straight from the browser. Written in JavaScript, Remix supports both usage in the browser and locally.

Our smart contract:

This tutorial will use Provable.sol smart contract which is to help users approve an ERC20 token with zero fees.

Provable.sol

How to deploy the Provable smart contract with Remix:

  1. Use remixd:
  • Paste the Provable source code to Remix IDE
  • Wait. What’s wrong!!! The Remix IDE doesn’t detect the import “openzeppelin-solidity/contracts/token/ERC20/ERC20.sol”; Yes, it’s because of ERC20.sol only exists on your local computer. That’s why we need remixd.
  • remixd is a tool that intend to be used with Remix IDE (aka. Browser-Solidity). It allows a websocket connection between Remix IDE (web application) and the local computer.
  • Install remixd: npm install -g remixd
  • Share folder between your local computer and Remix IDE
  • Press connect localhost button on Remix IDE and change the import statement like my screenshot below
  • Congratulations! You can able to press the Deploy button on Remix IDE now.

2. Use solidity flattener:

  • Like the title of this article. Use remixd still not quite easy yet. Let’s imagine something like if we can merge all the import files into one file (Provable.sol). The process will be easy, right?
  • Thanks to him https://github.com/poanetwork/solidity-flattener for making it happens.
  • Let’s clone this repos and use this command: npm start "path_to_not_flat_contract_definition_file.sol" It will generate a Provable_out.sol to ./out directory
  • Paste the content of Provable_out.sol to Remix IDE. It will look like something like this one:
  • Enjoy!!! you can deploy Provable smart contract now.

3. Conclusion:

  • There still many ways to deploy the smart contract to Ethereum blockchain. This article only shows the easiest way I think.

Published at Thu, 06 Feb 2020 08:54:35 +0000

{flickr|100|campaign}

Previous Article

How does Bitcoin System Operate? – William Gaithersworth

Next Article

Chaotic Barcelona Open Warfare Risks Unthinkable Messi Exit

You might be interested in …