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.
17 lines
441 B
QML
17 lines
441 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 string communityId
|
|
required property int chainId
|
|
required property string contractAddress
|
|
required property string accountAddress
|
|
required property bool enabled
|
|
}
|