# Foundry

## The Foundry Toolchain

The **Foundry** toolchain stands as a cutting-edge suite of tools for smart contract development. Crafted in Rust, it offers a flexible and component-based approach to building Ethereum applications.

Foundry enables you to handle project dependencies, compile your work, execute tests, deploy contracts, and engage with the blockchain through command-line instructions or Solidity scripts.

To begin your journey with Foundry in the StratoVM ecosystem, explore the [Foundry Book](https://book.getfoundry.sh/).

### Leveraging Foundry for StratoVM Development <a href="#leveraging-foundry-for-superseed-development" id="leveraging-foundry-for-superseed-development"></a>

Developers aiming to integrate Foundry with the StratoVM ecosystem will find the process straightforward and tailored for ease of use.

Ensure you provide the correct StratoVM RPC URL and Chain ID to effectively deploy and verify contracts within your development pipeline.

#### StratoVM Sepolia Testnet <a href="#superseed-sepolia-testnet" id="superseed-sepolia-testnet"></a>

* **Smart Contract Deployment:**

  ```
  forge create ... --rpc-url=https://rpc.stratovm.io --chain-id 93747
  ```
* **Smart Contract Verification:**

  ```
  forge verify-contract ... --chain-id 93747
  ```

ℹ️

Substitute the `...` in each command with your specific contract parameters or additional options to align with the requirements of your project.

<br>


---

# Agent Instructions: 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:

```
GET https://docs.stratovm.io/stratovm-sdk/toolkits/foundry.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
