docs/02_cleos/02_how-to-guides/how-to-create-a-wallet.md
Create a wallet using keosd.
Make sure you meet the following requirements:
cleos wallet create command and its parameters.cleos wallet commands.cleos.[[info | Note]]
| cleos is bundled with the EOSIO software. Installing EOSIO will also install cleos.
Perform the step below:
Create a default or named wallet and save the wallet password to a file:
cleos wallet create [-n named_wallet] -f <file_to_save_pwd>
Where file_to_save_pwd is the name of the file to write the wallet password to and named_wallet is an optional parameter to assign a name to the wallet.
Some examples are provided below:
default_wallet.pwd:Example Output
cleos wallet create -f default_wallet.pwd
Creating wallet: default
Save password to use in the future to unlock this wallet.
Without password imported keys will not be retrievable.
saving password to default_wallet.pwd
my_wallet and save the password to the file my_wallet.pwd:Example Output
cleos wallet create -n my_wallet -f my_wallet.pwd
Creating wallet: my_wallet
Save password to use in the future to unlock this wallet.
Without password imported keys will not be retrievable.
saving password to my_wallet.pwd