How do I create a new wallet using command line?

The DFINITY command-line execution environment (dfx) is the primary tool for creating, deploying, and managing the dapps for the Internet Computer platform.

You can use the dfx parent command with different flags and subcommands to perform different types of operations.

Using dfx, users can easily create a new wallet by creating a new canister that your wallet can be deployed into. 

 

dfx ledger create-canister

Use the dfx ledger create-canister command to convert ICP tokens to cycles and to register a new canister identifier on the IC.

 

Further Information:

To learn more about creating a canister with dfx, including basic usage, options, arguments, examples and more visit the documentation page: 

https://internetcomputer.org/docs/current/references/cli-reference/dfx-ledger/#dfx-ledger-create-canister 

 

Updated