Add Deploy Source Set for Smart Contract Projects
See original GitHub issueA typical Java contract project consists of a main
and test
source set. Contract code goes into main
and test code into test
. These source sets are standard for any Java project. For a smart contract project, a third source set - deploy
- would be convenient. That source set contains all code for deployment on private, test and main net. The IntelliJ IDE can pick up configured source sets from the Gradle build tool and integrate them in the UI and IDE workflows. We could add the deploy
source set via the already existing neow3j Gradle plugin.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:2
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Deploy Your First Smart Contract - Web3 University
Step 1: Connect to the Ethereum network · Step 2: Create your app (and API key) · Step 3: Create an Ethereum account...
Read more >How to develop, test, and deploy smart contracts using Ganache
Managing smart contracts is an important job of a blockchain developer, and this tutorial explains how to get started with them.
Read more >How to Build and Deploy a Solana Smart Contract
Deploying the Program ... The first step is to clone the repository. ... Once this is done, you can then set your current...
Read more >Deploying and interacting with smart contracts
This guide will cover all you need to know to get you started using your contracts, including: Setting up a Local Blockchain. Deploying...
Read more >How To Create A Smart Contract: The Ultimate Guide (2022)
This guide teaches you how to create smart contracts with Ethereum. Learn how to create and compile a smart contract using Remix in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sure, no worries. Let’s keep it in mind for July. 🙏
Thinking about it again: The source set should no be called
deploy
because it will will probably contain other code that is not deployment related, e.g., invocation scripts that handle contract invocations. What would be a good name for such a source set?