mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-08 20:56:39 +00:00
f5f94a70d4
Added back button field to NetworkWalletSettings class Added subtitle field to NetworkWalletSettings class Added step to verify the testnet subtitle
14 lines
362 B
Python
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'
|