> For the complete documentation index, see [llms.txt](https://docs.clv.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.clv.org/clv-chain-developer-guide/using-testnet.md).

# Using Testnet

## CLV Test Net

Please refer to the following details for CLV TestNet:

* Network Name: `CLV TestNet`
* RPC URL:&#x20;
  * `https://rpc.clover.finance`&#x20;
  * `https://rpc-2.clover.finance`&#x20;
  * `https://rpc-3.clover.finance`
* Web Socket URL:
  * `wss://api.clover.finance`
  * `wss://api-2.clover.finance`
  * `wss://api-3.clover.finance`
* ChainID: `1023`
* Symbol (Optional): `CLV`

{% hint style="info" %}
For a full list of CLV networks please check out the [Clover Network List](/use-clv-chain/network-details.md) page.
{% endhint %}

## Using MetaMask for TestNet

In MetaMask, navigate to Settings -> Networks -> Add Network and fill in the above details:

![](/files/-MQKiQoZejd7CwSWvoB2)

Then the MetaMask can connect to CLV TestNet. You can apply CLV for test via the faucet <https://faucet-iris.clover.finance/>

## Using Remix for Test Net

Make sure your MetaMask is connected to CLV TestNet as described above.  The screenshot is as follows:

![](/files/-MQKy6yTmCfK4rGR3CkE)

## Connect to CLV TestNet

If you want to set up a local node, which can connect to CLV TestNet, please use the following command to start your local node:

```bash
./target/release/clover --chain specs/clover-preview-iris.json \
    --port 30333 --ws-port 9944 --rpc-port 9933  \
    --name myNode --rpc-cors=all --rpc-methods=Unsafe \
    --validator --unsafe-ws-external --unsafe-rpc-external \
    --execution wasm
```
