Saving wallets data
You don't have to worry about unclear proccess of saving your private keys anymore. All created and imported wallets are going to be saved in: "C:\Low Caps Hub Terminal", as .txt or .dat files. Issue of .dat extension is explained in "Ecryption" section.

The software creates the save path parallel to the first wallet creation/import.
def create_wallet_directory():
directory = "C:\\Low Caps Hub Terminal"
if not os.path.exists(directory):
os.makedirs(directory)
return directory
If you are a user of our Terminal, you certainly aren't in crypto since "yesterday", but we would like to remind, just in case: under any circumstances don't share your private key with anyone! The PK will give access to all your assets for unauthorized people!
Last updated