Parity
Parity service allows you to configure and to enable Ethereum's parity client.
Options
enable- should be true to enable the servicewarp- true or false. It makes client to synchronize only last few blocks and remain part in background. Defaulttruechain- string, chain name. Could be olympic, frontier, homestead, mainnet, morden, ropsten, classic, expanse, testnet, kovan or dev. DefaultmainnetautoSign.enable- true or false. If true it tells to client to create a new account with password given inautoSign.passwordFile. DefaulttrueautoSign.passwordFile- string, path to file with password. Default/var/lib/parity/pskuser- string. User name from which the sircive is launched. DefaultparityextraOptions- array of strings. Any acceptable parity's options
Example
To enable parity client in test network kovan we could do these changes in configuration.nix:
services.parity.enable = true;
services.parity.chain = "kovan";
services.parity.autoSign.enable = false;