mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
88c09b3941
Setting signer logic and computing fees. AC messages for different transfer ownership states. Declining ownership logic. Added `CommunityTokensStore.qml` stub. Removed deprecated property. Issue #11964
16 lines
400 B
QML
16 lines
400 B
QML
import QtQuick 2.15
|
|
/*!
|
|
\qmltype SetSignerFeesSubscriber
|
|
\inherits QtObject
|
|
\brief Helper object that holds the subscriber properties and the published properties for the fee computation.
|
|
*/
|
|
|
|
SingleFeeSubscriber {
|
|
id: root
|
|
|
|
required property int chainId
|
|
required property string contractAddress
|
|
required property string accountAddress
|
|
required property bool enabled
|
|
}
|