On Windows blockchain data is located in C:\Users\You\AppData\Local\Parity\Ethereum
while keys and configuration are kept in C:\Users\You\AppData\Roaming\Parity\Ethereum
On MacOS: /Users/you/Library/Application Support/io.parity.ethereum
On Linux: /home/you/.local/share/io.parity.ethereum
See [[Backing-up-&-Restoring]].
They get imported automatically. :)
-
Simply use Parity Wallet's "New Account" function on the "Accounts" page.
-
Or complicated: copy it into your
$HOME/.local/share/io.parity.ethereum/keysdirectory. Parity will import all keys found there.
This entirely depends on the selected chain and whether state trie pruning is enabled or not.
For example --pruning archive, which disables state trie pruning, the chain data requires around 25 GB of space for the public foundation chain. The default --pruning fast reduces the blockchain size to around 7 GB.
You can just export it to a file:
parity export blocks $HOME/ethereum-chain-backup.rlpJust use import:
parity import $HOME/ethereum-chain-backup.rlpYes, see [Importing a Chain from Geth](Importing a Chain from Geth).
- Stop parity, then execute
parity db kill. - Relevant options are
--chain=*--pruning=*and--db-path/--base-path, i.e. to deletemordenrun:
parity db kill --chain=morden