I installed plug-in 'Intellij-Solidity' in Intellij Idea. But I did not found any new project option to create . Is there any environment setup for solidity programming. I use Ubuntu 16.04 LTS .
Asked
Active
Viewed 9,754 times
13
-
2I would assume the plugin is for syntax highlighting only – Mikko Ohtamaa Jun 13 '17 at 15:10
-
1absolutely, Do u have any idea how to run solidity program using Intellij idea? – Gopal ojha Jun 14 '17 at 10:35
-
@Gopalojha. I don't think you can "run" solidity programs afaiak in IntelliJ yet. Smart contracts written in solidity(.sol) are deployed on test or live net after they are compiled(using solc etc). – bitsabhi Feb 19 '18 at 12:57
3 Answers
4
If it is simply smart contracts you are interested in developing you might find it easier and more supported to use Remix online IDE (previous version is Browser Solidity online compiler)
Nam G VU
- 107
- 4
Samuel Barnes
- 881
- 10
- 26
-
2Thankyou for suggestion . But I want to use Intellij Idea for that . – Gopal ojha Jun 14 '17 at 06:51
4
Starting version 2.1.0, Intellij Solidity plugin supports running solidity functions directly in IDEA. It will use an EthereumJ standalone node (refer to Solidity settings to configure/download EthereumJ)
Mikhail Bolotov
- 141
- 1
2
Helpful tools
(truffle suite family - nodejs based)
Truffle is a development environment and testing framework and asset aiming to make life as an Ethereum developer easier.
Ganache-CLI or Ganache-GUI - Ethereum RPC client for testing and development.
(jetbrains family)
- IntelliJ-Solidity is a plugin for IntelliJ-based IDEs offers syntax highlighting, code formatting and autocomplete for Solidity files.
Nam G VU
- 107
- 4
bereket gebredingle
- 161
- 5
-
1IntelliJ-Solidity DOES NOT allow code formatting and autocomplete for .sol files. Syntax highlight only – Green Apr 05 '21 at 15:21
-
I guess from v2.1.0 it does ref - will require a EthereumJ standalone node – Nam G VU Oct 17 '22 at 07:19