> For the complete documentation index, see [llms.txt](https://docs.telcoin.network/telcoin-network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.telcoin.network/telcoin-network/getting-started/dapp-development/development-tools.md).

# Development Tools

Now that we have an understanding of interacting with the blockchain, we can start to think about dapp development. There are two main tools used by developers in the web3 space; [Hardhat](https://hardhat.org/) and [Foundry](https://github.com/foundry-rs/foundry).

### Hardhat

Hardhat builds on Ethers.js' functionality and introduces more components which together provide a full development environment. Some of the main highlights include:

* Scripting and testing in TypeScript/ JavaScript, making it useful for integration with front ends.
* Provides the ability to create local forks of networks at previous or current blocks. This allows developers to test their contracts as if they were deployed on Telcoin Network - similar to a sandbox style environment.
* Testing using chai and mocha for clean test code.

These features help Hardhat excel at contract deployment, and integration testing.

Hardhat has a thorough walkthrough and setup available [here](https://hardhat.org/tutorial).

### Foundry

Foundry is an extremely fast testing environment. Contrary to Hardhat, tests are written in solidity (rather than Type/JavaScript) and it also provides advanced testing features such as fuzzing and invariant testing.&#x20;

Foundry has useful documentation on hetting started [here](https://book.getfoundry.sh/getting-started/installation).


---

# 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.telcoin.network/telcoin-network/getting-started/dapp-development/development-tools.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.
