By default, the signing methods for rippled are limited to administrative connections. If you want to allow signing methods to be used as public API methods (like with versions of rippled before v1.1.0), you can enable it with a configuration change.
This enables the following methods to be used on "public" JSON-RPC and WebSocket connections, if your server accepts them:
You do not need to enable public signing to use these methods from an admin connection.
To enable public signing, perform the following steps:
Edit your
rippled's config file.vim /etc/opt/ripple/rippled.cfgThe recommended installation uses the config file
/etc/opt/ripple/rippled.cfgby default. Other places you can put a config file include$HOME/.config/ripple/rippled.cfg(where$HOMEis the home directory of the user runningrippled),$HOME/.local/ripple/rippled.cfg, or the current working directory from where you startrippled.Add the following stanza to your config file, and save the changes:
[signing_support] trueRestart your
rippledserver:systemctl restart rippled