Lukáš Tinkl 0b67555ee1 fix(AddAccount): Derivation path drop down is empty
- use `StatusListView` for the popup/menu contentItem
- add the menu to SB too

Fixes #16635
2024-10-30 11:43:02 +01:00

22 lines
606 B
QML

import QtQml 2.15
QtObject {
id: root
// store properties
required property bool isAddAccountPopup
property bool enteredPrivateKeyIsValid: false
property bool enteredPrivateKeyMatchTheKeypair: true
property bool enteredSeedPhraseIsValid: false
// backend properties
required property var privateKeyAccAddress
// functions
property var changePrivateKeyPostponed: function(){}
property var cleanPrivateKey: function(){}
property var submitPopup: function(){}
property var changeSeedPhrase: function(){}
property var validSeedPhrase: function(){}
}