Wallets menu

Selecting a wallet

If already you have created wallet / wallets, the only thing you need to do is made a choice of the pull out list, and confim you decision clicking "Confirm choice" button and alternatively entering your decription key ("Encryption" Section).

def list_wallets():
    directory = create_wallet_directory()
    wallets = [f for f in os.listdir(directory) if f.endswith('.txt') or f.endswith('.dat')]
    return wallets

Displaying tokens according to public key

After confirmation your choice, the Terminal is going to display all Solana assets which specific wallet posses. View of assets includes:

  • Ticker

  • Balance (with accuracy to 3 places after dot)

  • Estimated value in USD (with accuracy to 2 places after dot)

  • Comfortable way to swap or audit selected token (check "Terminal" Section)

Identifying tokens:

Displaying values:

Last updated