> For the complete documentation index, see [llms.txt](https://xeqmlabs.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xeqmlabs.gitbook.io/docs/documentation/guides/mainnet/start-wallet-rpc.md).

# Start Wallet RPC

The wallet RPC allows you to interact with your wallet through commands.

#### Windows (PowerShell)

First, stop and remove any existing wallet RPC container:

```
docker stop wallet-rpc; docker rm wallet-rpc
```

Then copy and paste this command:

{% code overflow="wrap" %}

```
docker run -d --name wallet-rpc --network host --restart unless-stopped --entrypoint /usr/local/bin/xeq-wallet-rpc -v "${PWD}\wallets:/data" ghcr.io/equilibriahorizon/equilibria-node:latest --testnet --rpc-bind-port=18084 --daemon-address=127.0.0.1:18091 --disable-rpc-login --wallet-dir=/data --log-level=1
```

{% endcode %}

#### Linux

First, stop and remove any existing wallet RPC container:

```
docker stop wallet-rpc; docker rm wallet-rpc
```

Then copy and paste this command:

{% code overflow="wrap" %}

```
docker run -d --name wallet-rpc --network host --restart unless-stopped --entrypoint /usr/local/bin/xeq-wallet-rpc -v "$(pwd)/wallets:/data" ghcr.io/equilibriahorizon/equilibria-node:latest --testnet --rpc-bind-port=18084 --daemon-address=127.0.0.1:18091 --disable-rpc-login --wallet-dir=/data --log-level=1
```

{% endcode %}
