The wallet-open
command allows users to open an existing wallet by specifying the file location of the wallet file. This command is particularly useful when accessing a wallet from a specific file path, with or without encryption.
wallet-open <WALLET_PATH> [ENCRYPTION_PASSWORD]
<WALLET_PATH>
: The file path of the wallet file to be opened. Ensure that this path is correct and the file exists.[ENCRYPTION_PASSWORD]
: Optional. If the wallet file is encrypted, provide the existing password to unlock it.-h, --help
: Displays help information about the wallet-open
command.Opening an Unencrypted Wallet:
wallet-open /path/to/wallet.dat
This command opens an unencrypted wallet located at /path/to/wallet.dat
.
Opening an Encrypted Wallet:
wallet-open /path/to/wallet.dat mypassword123
This command opens an encrypted wallet located at /path/to/wallet.dat
using the password mypassword123
.