Anastasiya Semenkevich f5f94a70d4 chore(@wallet_settings): added verifications for back button and subtitle (#114)
Added back button field to NetworkWalletSettings class
Added subtitle field to NetworkWalletSettings class
Added step to verify the testnet subtitle
2023-09-20 17:18:00 +03:00

14 lines
362 B
Python

from enum import Enum
class DerivationPath(Enum):
CUSTOM = 'Custom'
ETHEREUM = 'Ethereum'
ETHEREUM_ROPSTEN = 'Ethereum Testnet (Ropsten)'
ETHEREUM_LEDGER = 'Ethereum (Ledger)'
ETHEREUM_LEDGER_LIVE = 'Ethereum (Ledger Live/KeepKey)'
class WalletNetworkSettings(Enum):
TESTNET_SUBTITLE = 'Switch entire Status app to testnet only mode'