2024-10-29 11:28:57 +00:00
|
|
|
import QtQml 2.15
|
2023-08-04 12:41:57 +00:00
|
|
|
|
|
|
|
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(){}
|
|
|
|
}
|