2023-10-23 11:32:50 +00:00
|
|
|
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
|
|
|
|
|
2023-10-23 11:36:33 +00:00
|
|
|
required property int chainId
|
|
|
|
required property string contractAddress
|
2023-10-23 11:32:50 +00:00
|
|
|
required property string accountAddress
|
|
|
|
required property bool enabled
|
|
|
|
}
|