mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-23 20:18:47 +00:00
These changes should simplify the community related tx handlings on the client side, align it with tx flows that we already have for other sending types and make it maintainable.
22 lines
555 B
QML
22 lines
555 B
QML
import QtQuick 2.15
|
|
/*!
|
|
\qmltype DeployFeesSubscriber
|
|
\inherits QtObject
|
|
\brief Helper object that holds the subscriber properties and the published properties for the fee computation.
|
|
*/
|
|
|
|
SingleFeeSubscriber {
|
|
id: root
|
|
|
|
required property string communityId
|
|
required property int chainId
|
|
required property int tokenType
|
|
required property bool isOwnerDeployment
|
|
required property string accountAddress
|
|
required property bool enabled
|
|
|
|
property var ownerToken
|
|
property var masterToken
|
|
property var token
|
|
}
|