status-desktop/ui/app/AppLayouts/Communities/helpers/SetSignerFeesSubscriber.qml
Sale Djenic 442c0cba62 chore(communities-wallet): various improvements on community related transaction flows
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.
2025-01-30 15:49:49 +01:00

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
}