> For the complete documentation index, see [llms.txt](https://docs.gton.capital/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gton.capital/use/deploy-to-gton-network.md).

# Deploy to GTON Network

GTON Network allows you to use your favorite tools to develop and deploy contracts. Below is an example of how to add the testnet GTON Network to your Hardhat config file:&#x20;

```javascript
module.exports = {
  networks: {
    ...
    // for testnet
    'gton-testnet': {
      url: "https://testnet.gton.network/",
      chainId: 50021,
      accounts: [privateKey1, privateKey2, ...]
    },
  },
  ...
}
```
