- Ethereum - Discussion
- Ethereum - Useful Resources
- Ethereum - Quick Guide
- Ethereum - Summary
- Ethereum - Creating Contract Users
- Interacting with Deployed Contract
- Ethereum - Deploying Contract
- Attaching Wallet to Ganache Blockchain
- Ethereum - Creating Wallet
- Ethereum - MyEtherWallet
- Ethereum - A Quick Walkthrough
- Ethereum - Ganache Server Settings
- Ethereum - Ganache for Blockchain
- Ethereum - Limitations of Remix
- Ethereum - Interacting with the Contract
- Ethereum - Deploying the Contract
- Ethereum - Compiling the Contract
- Ethereum - Developing MyContract
- Ethereum - Solidity for Contract Writing
- Ethereum - Smart Contracts
- Ethereum - Introduction
- Ethereum - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Ethereum - Smart Contracts
There are several tools available to develop and test contracts. One of the simplest tools is provided on the official Ethereum site itself. The tool is called Remix, we will use this for our contract development.
Remix for Contract Development
Open the Remix IDE by typing in the following URL in your browser.
The following screen will appear.
In the center window, you will see some default code, which is a sample Sopdity code. You will type your contract code in this code editor. Your code may be auto-compiled. Upon successful compilation of the code, you will be able to run the code in the same IDE. When you execute the contract methods, the results will be displayed in the same IDE window. There are facipties to debug the code and to unit test your project. These can be seen in the menu bar at the top right hand side as shown in the IDE screenshot below. You will be using these options shortly.
You will now start writing your contract.
Advertisements