> 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/solana-cli-and-solana-keypair/step-2-verify-solana-cli-configuration.md).

# Step 2: Verify Solana CLI Configuration

After configuring the Solana CLI to connect to the Eclipse blockchain's staging environment, it's crucial to verify that the settings have been applied correctly. This ensures that your development activities are indeed targeting the correct network, allowing for a smooth development process. This step will guide you through verifying the current configuration of your Solana CLI.

**Why Verification Matters**

* **Accuracy**: Verification ensures that the CLI is configured to communicate with the intended RPC URL, preventing any unintended transactions or deployments on the wrong network.
* **Troubleshooting**: Identifying configuration issues early can save time by avoiding troubleshooting errors caused by incorrect network settings.

**Verification Instructions**

1. **Open Your Terminal**:
   * Access your terminal window where you have the Solana CLI available. Windows users should ensure they are using WSL for this process.
2. **Run the Configuration Get Command**:
   * To display your current Solana CLI configuration, execute the following command:

     ```bash
     solana config get
     ```
   * This command retrieves and displays the current settings of your Solana CLI, including the RPC URL, default wallet path, and other relevant configurations.
3. **Examine the Output**:

   * Focus on the "RPC URL" field in the output. It should match the URL you previously set:

     ```arduino
     RPC URL: https://staging-rpc.dev2.eclipsenetwork.xyz
     ```
   * Confirming that the "RPC URL" matches the intended staging environment URL ensures that your CLI is correctly set up to interact with the Eclipse blockchain's devnet.

   <figure><img src="/files/ZzjbkT7hpMccPrh2pntM" alt=""><figcaption><p>Example Output</p></figcaption></figure>


---

# 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/solana-cli-and-solana-keypair/step-2-verify-solana-cli-configuration.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.
