2021-09-30 09:43:29 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.13
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: root
|
|
|
|
|
2021-11-23 12:32:42 +00:00
|
|
|
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
|
2021-12-13 14:24:21 +00:00
|
|
|
// Not Refactored Yet
|
|
|
|
property string etherscanString: ""// walletModel.utilsView.etherscanLink
|
2021-09-30 09:43:29 +00:00
|
|
|
|
|
|
|
function setDappBrowserAddress() {
|
2021-12-13 14:24:21 +00:00
|
|
|
// Not Refactored Yet
|
|
|
|
// walletModel.setDappBrowserAddress()
|
2021-09-30 09:43:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getGasPrice(){
|
2021-12-13 14:24:21 +00:00
|
|
|
// Not Refactored Yet
|
|
|
|
// walletModel.gasView.getGasPrice()
|
2021-09-30 09:43:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|