mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 16:47:25 +00:00
5b9f5f5990
fixes #4154
23 lines
550 B
QML
23 lines
550 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
|
|
property string etherscanString: walletModel.utilsView.etherscanLink
|
|
|
|
function setDappBrowserAddress() {
|
|
walletModel.setDappBrowserAddress()
|
|
}
|
|
|
|
function getGasPrice(){
|
|
walletModel.gasView.getGasPrice()
|
|
}
|
|
|
|
}
|