mirror of
https://github.com/status-im/desktop-qa-automation.git
synced 2025-02-24 18:18:08 +00:00
* test(Wallet) Edit the default wallet account and Manage a watch-only account cases automated * test(Wallet) Manage generated and custom generated account * test(Wallet) Manage private key imported account
10 lines
254 B
Python
10 lines
254 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)'
|