Focus mode

Smart Contract Development with Solidity

Deploy your first Solidity smart contract with Remix IDE

Deploy your first Solidity smart contract with Remix IDE

Code from video: https://solidity-by-example.org/hello-world/

Remix is a browser-based IDE that allows us to create and test Ethereum smart contracts with the Solidity language. You can use it online from https://remix.ethereum.org/ (everything is done inside the browser, no setup required) or you can download it offline and use it locally. 

In the video above, you will learn how to write your first smart contract in Solidity, compile & deploy it and interact with your smart contract using Remix IDE. As an example, here we will write and run the "Hello world" using Solidity.


NOTE: At the start of every smart contract, you will see the pragma version declared. This is important because it tells the Solidity compiler what version to use. This is to prevent any breaking changes when future versions of the compiler are released. If you are working with someone else's code, it is also important to note that you are using the same compiler version.

Test

Comments

You need to enroll in the course to be able to comment!