Documentation
Search…
INTRODUCTION
USERS
DEVELOPMENT ENVIRONMENT
SOFTWARE MANUALS
Core
How To Guides
How To Ban An Unwanted Account
How To Calculate Reward For An Author
How To Calculate Reward For A Beneficiary
How To Calculate Reward For A Curator
How To Create A Wallet
How To Create An Account
How To Create A Proxy Account
How To Create Key Pair
How To Delegate Resources
How To Deploy A Node Using A Snapshot
How To Deploy A Smart Contract
How To Get Account Information
How To Get Block Information
How To Get Transaction Information
How To Import A Key
How To Link Permission
How To List All Key Pair
How To Stake Tokens
How To Stop A Node Using Docker
How To Submit A Proposal For HardFork
How To Transfer Tokens To A Worker
How To Undelegate Resources
How To Unlink Permission
How To Unstake Tokens
How To Vote
API Reference
Cleos Command Reference
Explorer Command Reference
DEVPORTAL
VALIDATORS
Powered By
GitBook
How To Create A Wallet
Goal
Create a
keosd
wallet.
Before you begin
Install the currently supported version of
cleos
Understand the following:
What is an
account
;
What is a
public
and
private
key pair.
Steps
Create a wallet and save the password to a file:
1
$ cleos wallet create --file password.pwd
Copied!
This should produce similar output as below. Note the wallet is named default if no name is provided.
1
Creating wallet: default
2
Save password to use
in
the future to unlock this wallet.
3
Without password imported keys will not be retrievable.
4
saving password to password.pwd
Copied!
Alternatively, you can name a wallet with
-n
option:
1
$ cleos wallet create -n named_wallet -f
passwd
Copied!
You should see something like the output below:
1
Creating wallet: named_wallet
2
Save password to use
in
the future to unlock this wallet.
3
Without password imported keys will not be retrievable.
4
saving password to
passwd
Copied!
Previous
How To Calculate Reward For A Curator
Next
How To Create An Account
Last modified
2yr ago
Copy link
Contents
Goal
Before you begin
Steps