mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
b3f8af8e06
Qml code referring to the old code base commented out, but not deleted, due to easier refactoring the rest of the app.
26 lines
645 B
QML
26 lines
645 B
QML
pragma Singleton
|
|
|
|
import QtQuick 2.13
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property var dappBrowserAccount: walletSectionCurrent
|
|
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()
|
|
}
|
|
|
|
}
|