incog.py 525 B

123456789101112131415161718192021
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, a command-line cryptocurrency wallet
  4. # Copyright (C)2013-2023 The MMGen Project <mmgen@tuta.io>
  5. # Licensed under the GNU General Public License, Version 3:
  6. # https://www.gnu.org/licenses
  7. # Public project repositories:
  8. # https://github.com/mmgen/mmgen-wallet
  9. # https://gitlab.com/mmgen/mmgen-wallet
  10. """
  11. wallet.incog: incognito wallet class
  12. """
  13. from .incog_base import wallet
  14. class wallet(wallet):
  15. desc = 'incognito data'
  16. file_mode = 'binary'
  17. no_tty = True