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-rpcThen copy and paste this command:
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=1Linux
First, stop and remove any existing wallet RPC container:
docker stop wallet-rpc; docker rm wallet-rpcThen copy and paste this command:
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=1Last updated