2023-10-27 16:18:24 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
|
|
|
// Stub for Controller QObject defined in src/app/modules/main/wallet_section/wallet_connect/controller.nim
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
signal proposeUserPair(string sessionProposalJson, string supportedNamespacesJson)
|
|
|
|
|
|
|
|
// function pairSessionProposal(/*string*/ sessionProposalJson)
|
|
|
|
required property var pairSessionProposal
|
|
|
|
|
2023-11-06 19:05:18 +00:00
|
|
|
signal respondSessionRequest(string sessionRequestJson, string signedJson, bool error)
|
|
|
|
|
|
|
|
// function sessionRequest(/*string*/ sessionRequestJson, /*string*/ password)
|
|
|
|
required property var sessionRequest
|
|
|
|
|
|
|
|
|
2023-11-15 21:26:12 +00:00
|
|
|
required property bool hasActivePairings
|
2023-10-27 16:18:24 +00:00
|
|
|
required property string projectId
|
|
|
|
}
|