status-desktop/ui/imports/shared/popups/common/BasePopupStore.qml

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(){}
}