Full list of RPCs - including hidden RPCs

2

1

Where can I find a full list of RPCs that are not listed in the output of the help command? (such as invalidateblock etc.)

Aliakbar Ahmadi

Posted 2015-05-05T10:24:03.043

Reputation: 1 335

Answers

4

Found this in the source code which should answer your question: https://github.com/bitcoin/bitcoin/blob/b05a89b2def301704df8f22f05a45ccf891c2b83/src/rpcserver.cpp#L268-380

It's the internal register of RPC commands that bitcoind should serve, and even includes which ought to be hidden from the help command. invalidateblock is in the hidden section with three others.

karimkorun

Posted 2015-05-05T10:24:03.043

Reputation: 763