status-desktop/ui/app/AppLayouts/Browser/stores/WalletStore.qml

30 lines
734 B
QML
Raw Normal View History

pragma Singleton
import QtQuick 2.13
QtObject {
id: root
property var dappBrowserAccount: walletSectionCurrent
2021-11-19 09:42:41 +00:00
property var accounts: walletSectionAccounts.model
property string defaultCurrency: walletSection.currentCurrency
property string signingPhrase: walletSection.signingPhrase
// Not Refactored Yet
property string etherscanString: ""// walletModel.utilsView.etherscanLink
function setDappBrowserAddress() {
// Not Refactored Yet
// walletModel.setDappBrowserAddress()
}
function getGasPrice(){
// Not Refactored Yet
// walletModel.gasView.getGasPrice()
}
2022-02-28 12:30:36 +00:00
function isEIP1559Enabled() {
return walletSection.isEIP1559Enabled()
}
}