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

Last updated