[Ethereum] Personal API documentation for JSON RPC

go-ethereumjson-rpcSecurity

Is there documentation and examples for using the personal api via JSON-RPC?

I found this.

However it does not say what the method would be in JSON-RPC.

Best Answer

Ethereum's JSON-RPC spec https://github.com/ethereum/wiki/wiki/JSON-RPC doesn't contain the personal APIs, because the personal APIs are an extension by Geth.

The JSON-RPC spec represents what a compliant Ethereum client should implement.

@BokkyPooBah has linked to other helpful answers, which mention risks of managing accounts via JSON-RPC, and probably the reason why the spec doesn't advocate implementation of them by all compliant clients (such as cpp-ethereum, pyethapp).

Related Topic