Go-Ethereum – How to Attach Mist to Geth Node on Different Computer over HTTP RPC

go-ethereumipcjson-rpcmist

I gather that Mist will automatically look for Geth on a local machine via IPC to save it maintaining its own blockchain. Is it possible to tell it to look for an instance of Geth on another machine via HTTP RPC?

Best Answer

As far as I know Mist can only connect to a local instance, and even then only via IPC. The reason is that is uses a few APIs that are not exposed by default over HTTP and would probably be unsafe to do so (e.g. account management).

Related Topic