-
Notifications
You must be signed in to change notification settings - Fork 31
wallet create Command Guide
Create a new wallet. This will create a new file without scanning the blockchain.
Use this command if the seed phrase is brand new and has no associated transactions. If the seed phrase has been used in the past and may have associated transactions, use wallet-recover instead.
wallet-create <COMMAND>
| Command | Description |
|---|---|
software |
Create a standard software wallet |
trezor |
(Beta) Create a wallet using a connected Trezor hardware wallet |
wallet-create software [OPTIONS] <WALLET_PATH> <WHETHER_TO_STORE_SEED_PHRASE> [MNEMONIC]
-
<WALLET_PATH>: File path for the new wallet file. -
<WHETHER_TO_STORE_SEED_PHRASE>: Whether to store the seed phrase inside the wallet file or only print it on screen.-
store-seed-phrase— saves the seed phrase in the wallet file. Consider encrypting the wallet withwallet-encrypt-private-keysto protect it. -
do-not-store-seed-phrase— the seed phrase is only printed once and never saved. Use this as a security measure if the seed phrase is reused elsewhere.
-
-
[MNEMONIC]: (Optional) An existing mnemonic phrase (12, 15, or 24 words, as a single quoted argument). If not specified, a new phrase is generated and printed.
-
--passphrase <PASSPHRASE>: An optional passphrase to use alongside the mnemonic.
# Create a new wallet, generate a new seed phrase, store it in the file
wallet-create software /path/to/wallet.dat store-seed-phrase
# Create a wallet from an existing mnemonic, do not store the phrase
wallet-create software /path/to/wallet.dat do-not-store-seed-phrase "word1 word2 ... word24"
# Create a wallet with a passphrase
wallet-create software /path/to/wallet.dat store-seed-phrase --passphrase "my passphrase"
Create a wallet using a connected Trezor hardware wallet. Only the public keys are stored in the wallet file — the mnemonic stays on the device.
The mnemonic must have been set up on the device during its initial setup. The passphrase (if any) must be entered on the device each time it is connected.
wallet-create trezor [OPTIONS] <WALLET_PATH>
-
<WALLET_PATH>: File path for the new wallet file.
-
--device-id <DEVICE_ID>: (Optional) The ID of the Trezor device to use, if multiple devices are connected. If not specified and multiple devices are present, a selection prompt will appear.
-
wallet-recover: Recover a wallet from an existing seed phrase (scans the blockchain). -
wallet-open: Open an existing wallet file. -
wallet-encrypt-private-keys: Encrypt the wallet after creation.
- Home
- Installing Mintlayer
- Upgrade Mintlayer
- Node
- Addresses
- Wallet CLI
- Wallet RPC
- API
- Advanced Tools
- Guides
- CHANGELOG