Skip to content

Latest commit

 

History

History
50 lines (23 loc) · 1.82 KB

How to use remix.ide.md

File metadata and controls

50 lines (23 loc) · 1.82 KB

Remix IDE

Remix IDE is an open source web and desktop application. It fosters a fast development cycle and has a rich set of plugins with intuitive GUIs. Remix is used for the entire journey of contract development with Solidity language as well as a playground for learning and teaching Ethereum.

Why to use Remix

diaggram

Deploying Contract

In order to deploy our smart contract we have to first compile it.

compile

Then we can deploy it.

deploy

Abi and ByteCode

You can find abi and bytecode in compilation menu.

abi bytecode

You can click on abi and bytecode to copy them.

Giving Input in Smart Contract

After we have deployed our contracts as mentioned above we can go to deployed contracts option, we can see all of our attributes and functions there .

input 1

deploy2

After we enter the value inside our function we can click on transact to input our function.

Ouput

We can see the ouput below the function name.

output main

Working of a smart contract

rename.mp4