status-desktop/ui/app/AppLayouts/Communities/helpers/SetSignerFeesSubscriber.qml
Noelia 88c09b3941 feat(@desktop/communtiies): Set signer flow
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
2023-11-08 14:35:51 +01:00

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
}