> ## Documentation Index
> Fetch the complete documentation index at: https://thrackle.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Networks

> Supported Networks for the Forte Rules Engine v2

The Forte Rules Engine is a protocol that is deployed and ready for you to hook into. Below is the list of currently supported testnets.

| **Network**       | **Rules Engine Address**                     |
| :---------------- | -------------------------------------------- |
| Base Sepolia      | `0xD8723A7bBd86259131aD982B3c61aEc5D5F06d20` |
| Ethereum Sepolia  | `0x6039C14B2B50577C2F22D943F4984466D6B6D3e1` |
| Local Anvil Chain | `0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6` |

## Working Locally With Anvil

You have two options to work with the Rules Engine locally before deploying to a live network.

1. Fork a testnet with the Rules Engine already deployed to it.

<CodeGroup>
  ```bash command
  anvil --fork-url <RPC_URL_OF_NETWORK>
  ```

  ```bash example
  anvil --fork-url https://sepolia.base.org
  ```
</CodeGroup>

When using the `--fork-url` approach, the address that the protocol is deployed to for that chain is what you will use in your application.

2. Start Anvil with a dump state file.

   ```bash
   anvil --load-state anvilState.json
   ```

   You can get a copy of the `anvilState.json` file for this option here: [https://github.com/forte-service-company-ltd/fre-quickstart/blob/main/anvilState.json](https://github.com/forte-service-company-ltd/fre-quickstart/blob/main/anvilState.json)
