> For the complete documentation index, see [llms.txt](https://docs.eclipse.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eclipse.xyz/developers/tutorials-and-guides/developer-guides/dapp-deployment-tutorial-eclipse-devnet/creating-an-anchor-project-in-visual-studio-code/step-6-deploy-your-project-to-the-eclipse-devnet.md).

# Step 6: Deploy Your Project to the Eclipse Devnet

Deploying your compiled smart contract to the Eclipse Devnet is a pivotal step, marking the transition from development to live operation. This step involves uploading your program to the blockchain, which assigns it a unique Program ID for interaction.

**Prerequisites**

* Ensure the Solana CLI is correctly configured for the intended network (e.g., devnet) and your wallet is funded with enough SOL to cover deployment costs.
* Confirm your project has been compiled successfully, producing the `.so` file in the `target/deploy/` directory.

**Deployment Process**

1. **Access Terminal in Visual Studio Code**:
   * Open the terminal within VS Code, ensuring you're in the root directory of your project.
2. **Execute Deployment Command**:
   * Run the following command to deploy your smart contract:

     ```bash
     solana program deploy target/deploy/nft_minter.so
     ```
   * This command uploads the `nft_minter.so` file to the Eclipse Devnet, and the CLI outputs the Program ID upon successful deployment. Note this Program ID for future transactions and interactions with your program.<br>

     <figure><img src="https://lh7-us.googleusercontent.com/V68rUuJVdJNKmlHXST3ZgOapT8IopZ7vYByx3xvHy0-7GGqNnSvnnbww4SohSQR_tNYyZbtnggCjVx23C7uhVskozd4CYx-KTAz2OhPLuNWnsBocOiOJiHUX7kf5UttLkfkHbIXNjVSiM868fV9D1uM" alt=""><figcaption><p>Example Output</p></figcaption></figure>

**Troubleshooting**

* **Funding Issues**: If you encounter errors related to insufficient funds, consider using the `solana airdrop` command to acquire ETH for the deployment fee.
* **Network Configuration**: Confirm you're connected to the appropriate Eclipse network. Use `solana config get` to verify your current settings.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.eclipse.xyz/developers/tutorials-and-guides/developer-guides/dapp-deployment-tutorial-eclipse-devnet/creating-an-anchor-project-in-visual-studio-code/step-6-deploy-your-project-to-the-eclipse-devnet.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
