[Ethereum] Parity New Account: no seed

accountsparity

Using Parity 1.7.x, if you type "parity account new" you have to type in a password. But there's no seed being generated. Does that mean this wallet can't be restored without the original key?

Or is there a way to generate the seed (not from the UI)?

Best Answer

Exactly, the CLI generates just a random key.

See also this answer: What's the difference between these two methods of creating an account via Parity?

Or is there a way to generate the seed (not from the UI)?

Yes, via RPC:

  1. parity_generateSecretPhrase
  2. parity_newAccountFromPhrase

Check the docs for usage examples:

Related Topic