# Connect to a Node

To use Acala EVM, you need to connect to an Acala Node. You can either

1. connect to a deployed test network (maintained by Acala) OR
2. run a local Acala test node

## **1. Connect to a deployed test network**

Find all available testnet nodes [here](broken://pages/8ov3x2LEfWPoXsNBlQOU#rpc-endpoints). You can use [Polkadot Explorer](/build/development-guide/smart-contracts/get-started-evm/acala-console.md) to communicate with the node, and [EVM Playground](/build/development-guide/smart-contracts/get-started-evm/evm-playground.md) to deploy and execute contracts.

## **2. Run a local Acala test node**

Alternatively, you can run a local test node. To run your own node, you need to have installed [Docker](https://www.docker.com/) on your machine. If you don’t have it installed, please follow the instructions [here](https://docs.docker.com/get-docker/).

To check whether Docker is successfully installed run the command below:

```bash
docker version
```

If you receive the version number, you can start your local Acala node with the command below:

```bash
docker pull acala/acala-node:latest
docker run -it -p 9944:9944 -p 9933:9933 acala/acala-node:latest --dev --ws-external --rpc-external --rpc-cors=all
```

The output of your node should look like this:

![](https://i.imgur.com/EyryyFs.png)


---

# 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://wiki.acala.network/build/development-guide/smart-contracts/get-started-evm/connect-to-a-node.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.
