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'
|