feat(connector)_:implement sign transaction screen
fix #15172 Implement the sign request popup in status desktop that aims at signing requests emitted by the user in the browser plugin.
This commit is contained in:
parent
a50a6b96f0
commit
456c1936ac
|
@ -9,9 +9,26 @@ type ConnectorSendRequestAccountsSignal* = ref object of Signal
|
||||||
iconUrl*: string
|
iconUrl*: string
|
||||||
requestID*: string
|
requestID*: string
|
||||||
|
|
||||||
|
type ConnectorSendTransactionSignal* = ref object of Signal
|
||||||
|
url*: string
|
||||||
|
name*: string
|
||||||
|
iconUrl*: string
|
||||||
|
requestID*: string
|
||||||
|
chainID*: int
|
||||||
|
txArgs*: string
|
||||||
|
|
||||||
proc fromEvent*(T: type ConnectorSendRequestAccountsSignal, event: JsonNode): ConnectorSendRequestAccountsSignal =
|
proc fromEvent*(T: type ConnectorSendRequestAccountsSignal, event: JsonNode): ConnectorSendRequestAccountsSignal =
|
||||||
result = ConnectorSendRequestAccountsSignal()
|
result = ConnectorSendRequestAccountsSignal()
|
||||||
result.url = event["event"]{"url"}.getStr()
|
result.url = event["event"]{"url"}.getStr()
|
||||||
result.name = event["event"]{"name"}.getStr()
|
result.name = event["event"]{"name"}.getStr()
|
||||||
result.iconUrl = event["event"]{"iconUrl"}.getStr()
|
result.iconUrl = event["event"]{"iconUrl"}.getStr()
|
||||||
result.requestID = event["event"]{"requestId"}.getStr()
|
result.requestID = event["event"]{"requestId"}.getStr()
|
||||||
|
|
||||||
|
proc fromEvent*(T: type ConnectorSendTransactionSignal, event: JsonNode): ConnectorSendTransactionSignal =
|
||||||
|
result = ConnectorSendTransactionSignal()
|
||||||
|
result.url = event["event"]{"url"}.getStr()
|
||||||
|
result.name = event["event"]{"name"}.getStr()
|
||||||
|
result.iconUrl = event["event"]{"iconUrl"}.getStr()
|
||||||
|
result.requestID = event["event"]{"requestId"}.getStr()
|
||||||
|
result.chainID = event["event"]{"chainId"}.getInt()
|
||||||
|
result.txArgs = event["event"]{"txArgs"}.getStr()
|
|
@ -67,6 +67,7 @@ type SignalType* {.pure.} = enum
|
||||||
CommunityTokenTransactionStatusChanged = "communityToken.communityTokenTransactionStatusChanged"
|
CommunityTokenTransactionStatusChanged = "communityToken.communityTokenTransactionStatusChanged"
|
||||||
CommunityTokenAction = "communityToken.communityTokenAction"
|
CommunityTokenAction = "communityToken.communityTokenAction"
|
||||||
ConnectorSendRequestAccounts = "connector.sendRequestAccounts"
|
ConnectorSendRequestAccounts = "connector.sendRequestAccounts"
|
||||||
|
ConnectorSendTransaction = "connector.sendTransaction"
|
||||||
Unknown
|
Unknown
|
||||||
|
|
||||||
proc event*(self:SignalType):string =
|
proc event*(self:SignalType):string =
|
||||||
|
|
|
@ -136,6 +136,7 @@ QtObject:
|
||||||
of SignalType.CommunityTokenTransactionStatusChanged: CommunityTokenTransactionStatusChangedSignal.fromEvent(jsonSignal)
|
of SignalType.CommunityTokenTransactionStatusChanged: CommunityTokenTransactionStatusChangedSignal.fromEvent(jsonSignal)
|
||||||
of SignalType.CommunityTokenAction: CommunityTokenActionSignal.fromEvent(jsonSignal)
|
of SignalType.CommunityTokenAction: CommunityTokenActionSignal.fromEvent(jsonSignal)
|
||||||
of SignalType.ConnectorSendRequestAccounts: ConnectorSendRequestAccountsSignal.fromEvent(jsonSignal)
|
of SignalType.ConnectorSendRequestAccounts: ConnectorSendRequestAccountsSignal.fromEvent(jsonSignal)
|
||||||
|
of SignalType.ConnectorSendTransaction: ConnectorSendTransactionSignal.fromEvent(jsonSignal)
|
||||||
else: Signal()
|
else: Signal()
|
||||||
|
|
||||||
result.signalType = signalType
|
result.signalType = signalType
|
||||||
|
|
|
@ -7,7 +7,10 @@ import app/core/signals/types
|
||||||
|
|
||||||
import app_service/service/connector/service as connector_service
|
import app_service/service/connector/service as connector_service
|
||||||
|
|
||||||
|
import app_service/common/utils
|
||||||
|
|
||||||
const SIGNAL_CONNECTOR_SEND_REQUEST_ACCOUNTS* = "ConnectorSendRequestAccounts"
|
const SIGNAL_CONNECTOR_SEND_REQUEST_ACCOUNTS* = "ConnectorSendRequestAccounts"
|
||||||
|
const SIGNAL_CONNECTOR_EVENT_CONNECTOR_SEND_TRANSACTION* = "ConnectorSendTransaction"
|
||||||
|
|
||||||
logScope:
|
logScope:
|
||||||
topics = "connector-controller"
|
topics = "connector-controller"
|
||||||
|
@ -22,6 +25,7 @@ QtObject:
|
||||||
self.QObject.delete
|
self.QObject.delete
|
||||||
|
|
||||||
proc dappRequestsToConnect*(self: Controller, requestID: string, payload: string) {.signal.}
|
proc dappRequestsToConnect*(self: Controller, requestID: string, payload: string) {.signal.}
|
||||||
|
proc dappValidatesTransaction*(self: Controller, requestID: string, payload: string) {.signal.}
|
||||||
|
|
||||||
proc newController*(service: connector_service.Service, events: EventEmitter): Controller =
|
proc newController*(service: connector_service.Service, events: EventEmitter): Controller =
|
||||||
new(result, delete)
|
new(result, delete)
|
||||||
|
@ -45,6 +49,18 @@ QtObject:
|
||||||
|
|
||||||
controller.dappRequestsToConnect(params.requestID, dappInfo.toJson())
|
controller.dappRequestsToConnect(params.requestID, dappInfo.toJson())
|
||||||
|
|
||||||
|
result.events.on(SIGNAL_CONNECTOR_EVENT_CONNECTOR_SEND_TRANSACTION) do(e: Args):
|
||||||
|
let params = ConnectorSendTransactionSignal(e)
|
||||||
|
let dappInfo = %*{
|
||||||
|
"icon": params.iconUrl,
|
||||||
|
"name": params.name,
|
||||||
|
"url": params.url,
|
||||||
|
"chainID": params.chainID,
|
||||||
|
"txArgs": params.txArgs,
|
||||||
|
}
|
||||||
|
|
||||||
|
controller.dappValidatesTransaction(params.requestID, dappInfo.toJson())
|
||||||
|
|
||||||
result.QObject.setup
|
result.QObject.setup
|
||||||
|
|
||||||
proc parseSingleUInt(chainIDsString: string): uint =
|
proc parseSingleUInt(chainIDsString: string): uint =
|
||||||
|
@ -62,4 +78,15 @@ QtObject:
|
||||||
return self.service.approveDappConnect(requestID, account, chainID)
|
return self.service.approveDappConnect(requestID, account, chainID)
|
||||||
|
|
||||||
proc rejectDappConnectRequest*(self: Controller, requestID: string): bool {.slot.} =
|
proc rejectDappConnectRequest*(self: Controller, requestID: string): bool {.slot.} =
|
||||||
return self.service.rejectDappConnect(requestID)
|
return self.service.rejectDappConnect(requestID)
|
||||||
|
|
||||||
|
proc approveTransactionRequest*(self: Controller, requestID: string, hash: string): bool {.slot.} =
|
||||||
|
return self.service.approveTransactionRequest(requestID, hash)
|
||||||
|
|
||||||
|
proc rejectTransactionSigning*(self: Controller, requestID: string): bool {.slot.} =
|
||||||
|
return self.service.rejectTransactionSigning(requestID)
|
||||||
|
|
||||||
|
proc createHash*(self: Controller, signature: string): string {.slot.} =
|
||||||
|
let signatureHex = if signature.startsWith("0x"): signature[2..^1] else: signature
|
||||||
|
|
||||||
|
return utils.hashPassword(signatureHex, true)
|
|
@ -13,6 +13,7 @@ logScope:
|
||||||
topics = "connector-service"
|
topics = "connector-service"
|
||||||
|
|
||||||
const SIGNAL_CONNECTOR_SEND_REQUEST_ACCOUNTS* = "ConnectorSendRequestAccounts"
|
const SIGNAL_CONNECTOR_SEND_REQUEST_ACCOUNTS* = "ConnectorSendRequestAccounts"
|
||||||
|
const SIGNAL_CONNECTOR_EVENT_CONNECTOR_SEND_TRANSACTION* = "ConnectorSendTransaction"
|
||||||
|
|
||||||
# Enum with events
|
# Enum with events
|
||||||
type Event* = enum
|
type Event* = enum
|
||||||
|
@ -52,6 +53,18 @@ QtObject:
|
||||||
|
|
||||||
self.events.emit(SIGNAL_CONNECTOR_SEND_REQUEST_ACCOUNTS, data)
|
self.events.emit(SIGNAL_CONNECTOR_SEND_REQUEST_ACCOUNTS, data)
|
||||||
)
|
)
|
||||||
|
self.events.on(SignalType.ConnectorSendTransaction.event, proc(e: Args) =
|
||||||
|
if self.eventHandler == nil:
|
||||||
|
return
|
||||||
|
|
||||||
|
var data = ConnectorSendTransactionSignal(e)
|
||||||
|
|
||||||
|
if not data.requestID.len() == 0:
|
||||||
|
echo "ConnectorSendTransactionSignal failed, requestID is empty"
|
||||||
|
return
|
||||||
|
|
||||||
|
self.events.emit(SIGNAL_CONNECTOR_EVENT_CONNECTOR_SEND_TRANSACTION, data)
|
||||||
|
)
|
||||||
|
|
||||||
proc registerEventsHandler*(self: Service, handler: EventHandlerFn) =
|
proc registerEventsHandler*(self: Service, handler: EventHandlerFn) =
|
||||||
self.eventHandler = handler
|
self.eventHandler = handler
|
||||||
|
@ -60,4 +73,10 @@ QtObject:
|
||||||
return status_go.requestAccountsAcceptedFinishedRpc(requestID, account, chainID)
|
return status_go.requestAccountsAcceptedFinishedRpc(requestID, account, chainID)
|
||||||
|
|
||||||
proc rejectDappConnect*(self: Service, requestID: string): bool =
|
proc rejectDappConnect*(self: Service, requestID: string): bool =
|
||||||
return status_go.requestAccountsRejectedFinishedRpc(requestID)
|
return status_go.requestAccountsRejectedFinishedRpc(requestID)
|
||||||
|
|
||||||
|
proc approveTransactionRequest*(self: Service, requestID: string, hash: string): bool =
|
||||||
|
return status_go.sendTransactionAcceptedFinishedRpc(requestID, hash)
|
||||||
|
|
||||||
|
proc rejectTransactionSigning*(self: Service, requestID: string): bool =
|
||||||
|
return status_go.sendTransactionRejectedFinishedRpc(requestID)
|
|
@ -6,18 +6,29 @@ from gen import rpc
|
||||||
|
|
||||||
const
|
const
|
||||||
EventConnectorSendRequestAccounts* = "connector.sendRequestAccounts"
|
EventConnectorSendRequestAccounts* = "connector.sendRequestAccounts"
|
||||||
|
EventConnectorSendTransaction* = "connector.sendTransaction"
|
||||||
|
|
||||||
type RequestAccountsAcceptedArgs* = ref object of RootObj
|
type RequestAccountsAcceptedArgs* = ref object of RootObj
|
||||||
requestID* {.serializedFieldName("requestId").}: string
|
requestID* {.serializedFieldName("requestId").}: string
|
||||||
account* {.serializedFieldName("account").}: string
|
account* {.serializedFieldName("account").}: string
|
||||||
chainID* {.serializedFieldName("chainId").}: uint
|
chainID* {.serializedFieldName("chainId").}: uint
|
||||||
|
|
||||||
|
type SendTransactionAcceptedArgs* = ref object of RootObj
|
||||||
|
requestID* {.serializedFieldName("requestId").}: string
|
||||||
|
hash* {.serializedFieldName("hash").}: string
|
||||||
|
|
||||||
type RejectedArgs* = ref object of RootObj
|
type RejectedArgs* = ref object of RootObj
|
||||||
requestID* {.serializedFieldName("requestId").}: string
|
requestID* {.serializedFieldName("requestId").}: string
|
||||||
|
|
||||||
rpc(requestAccountsAccepted, "connector"):
|
rpc(requestAccountsAccepted, "connector"):
|
||||||
args: RequestAccountsAcceptedArgs
|
args: RequestAccountsAcceptedArgs
|
||||||
|
|
||||||
|
rpc(sendTransactionAccepted, "connector"):
|
||||||
|
args: SendTransactionAcceptedArgs
|
||||||
|
|
||||||
|
rpc(sendTransactionRejected, "connector"):
|
||||||
|
aargs: RejectedArgs
|
||||||
|
|
||||||
rpc(requestAccountsRejected, "connector"):
|
rpc(requestAccountsRejected, "connector"):
|
||||||
args: RejectedArgs
|
args: RejectedArgs
|
||||||
|
|
||||||
|
@ -50,4 +61,29 @@ proc requestAccountsRejectedFinishedRpc*(requestID: string): bool =
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
error "requestAccountsRejectedFinishedRpc failed: ", "msg", e.msg
|
error "requestAccountsRejectedFinishedRpc failed: ", "msg", e.msg
|
||||||
|
return false
|
||||||
|
|
||||||
|
proc sendTransactionAcceptedFinishedRpc*(requestID: string, hash: string): bool =
|
||||||
|
try:
|
||||||
|
var args = SendTransactionAcceptedArgs()
|
||||||
|
args.requestID = requestID
|
||||||
|
args.hash = hash
|
||||||
|
let rpcRes = sendTransactionAccepted(args)
|
||||||
|
|
||||||
|
return isSuccessResponse(rpcRes)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
error "sendTransactionAcceptedFinishedRpc failed: ", "msg", e.msg
|
||||||
|
return false
|
||||||
|
|
||||||
|
proc sendTransactionRejectedFinishedRpc*(requestID: string): bool =
|
||||||
|
try:
|
||||||
|
var args = RejectedArgs()
|
||||||
|
args.requestID = requestID
|
||||||
|
let rpcRes = sendTransactionRejected(args)
|
||||||
|
|
||||||
|
return isSuccessResponse(rpcRes)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
error "sendTransactionRejectedFinishedRpc failed: ", "msg", e.msg
|
||||||
return false
|
return false
|
|
@ -315,6 +315,7 @@ DappsComboBox {
|
||||||
}
|
}
|
||||||
|
|
||||||
function onSessionRequest(request) {
|
function onSessionRequest(request) {
|
||||||
|
console.log("---> onSessionRequest")
|
||||||
sessionRequestLoader.request = request
|
sessionRequestLoader.request = request
|
||||||
sessionRequestLoader.requestHandled = false
|
sessionRequestLoader.requestHandled = false
|
||||||
sessionRequestLoader.active = true
|
sessionRequestLoader.active = true
|
||||||
|
|
|
@ -32,12 +32,315 @@ WalletConnectSDKBase {
|
||||||
property bool active: true
|
property bool active: true
|
||||||
required property WalletConnectService wcService
|
required property WalletConnectService wcService
|
||||||
property string requestID: ""
|
property string requestID: ""
|
||||||
|
property var dappInfo: null
|
||||||
|
property var txArgs: null
|
||||||
|
property alias requestsModel: requests
|
||||||
|
required property DAppsStore store
|
||||||
|
|
||||||
projectId: ""
|
projectId: ""
|
||||||
|
|
||||||
implicitWidth: 1
|
implicitWidth: 1
|
||||||
implicitHeight: 1
|
implicitHeight: 1
|
||||||
|
|
||||||
|
QtObject {
|
||||||
|
id: d
|
||||||
|
|
||||||
|
function sessionRequestEvent(event) {
|
||||||
|
let obj = d.resolveAsync(event)
|
||||||
|
if (obj === null) {
|
||||||
|
let error = true
|
||||||
|
controller.rejectTransactionSigning(root.requestID)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
sessionRequestLoader.request = obj
|
||||||
|
requests.enqueue(obj)
|
||||||
|
}
|
||||||
|
|
||||||
|
function resolveAsync(event) {
|
||||||
|
let method = event.params.request.method
|
||||||
|
let account = lookupAccountFromEvent(event, method)
|
||||||
|
if(!account) {
|
||||||
|
console.error("Error finding account for event", JSON.stringify(event))
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
let network = lookupNetworkFromEvent(event, method)
|
||||||
|
if(!network) {
|
||||||
|
console.error("Error finding network for event", JSON.stringify(event))
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
let data = extractMethodData(event, method)
|
||||||
|
if(!data) {
|
||||||
|
console.error("Error in event data lookup", JSON.stringify(event))
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
let obj = sessionRequestComponent.createObject(null, {
|
||||||
|
event,
|
||||||
|
topic: event.topic,
|
||||||
|
id: event.id,
|
||||||
|
method,
|
||||||
|
account,
|
||||||
|
network,
|
||||||
|
data,
|
||||||
|
maxFeesText: "?",
|
||||||
|
maxFeesEthText: "?",
|
||||||
|
enoughFunds: false,
|
||||||
|
estimatedTimeText: "?"
|
||||||
|
})
|
||||||
|
if (obj === null) {
|
||||||
|
console.error("Error creating SessionRequestResolved for event")
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check later to have a valid request object
|
||||||
|
if (!SessionRequest.getSupportedMethods().includes(method)) {
|
||||||
|
console.error("Unsupported method", method)
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
let session = getActiveSessions(root.dappInfo)
|
||||||
|
|
||||||
|
if (session === null) {
|
||||||
|
console.error("DAppsRequestHandler.lookupSession: error finding session for topic", obj.topic)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
obj.resolveDappInfoFromSession(session)
|
||||||
|
|
||||||
|
let gasLimit = parseFloat(parseInt(root.txArgs.gas, 16));
|
||||||
|
let gasPrice = parseFloat(parseInt(root.txArgs.gasPrice, 16));
|
||||||
|
let maxFees = gasLimit * gasPrice
|
||||||
|
let { maxFeesText, maxFeesEthText, haveEnoughFunds } = maxFeesUpdated(maxFees/1000000000, maxFees, true, "Gwei")
|
||||||
|
let estimatedTimeText = estimatedTimeUpdated(1, 12)
|
||||||
|
|
||||||
|
let fees = {
|
||||||
|
"maxFeesText": maxFeesText,
|
||||||
|
"maxFeesEthText": maxFeesEthText,
|
||||||
|
"enoughFunds": haveEnoughFunds,
|
||||||
|
"estimatedTimeText": estimatedTimeText,
|
||||||
|
}
|
||||||
|
|
||||||
|
obj.resolveFees(fees)
|
||||||
|
|
||||||
|
return obj
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns null if the account is not found
|
||||||
|
function lookupAccountFromEvent(event, method) {
|
||||||
|
var address = ""
|
||||||
|
if (method === SessionRequest.methods.personalSign.name) {
|
||||||
|
if (event.params.request.params.length < 2) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
address = event.params.request.params[1]
|
||||||
|
} else if (method === SessionRequest.methods.sign.name) {
|
||||||
|
if (event.params.request.params.length === 1) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
address = event.params.request.params[0]
|
||||||
|
} else if(method === SessionRequest.methods.signTypedData_v4.name ||
|
||||||
|
method === SessionRequest.methods.signTypedData.name)
|
||||||
|
{
|
||||||
|
if (event.params.request.params.length < 2) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
address = event.params.request.params[0]
|
||||||
|
} else if (method === SessionRequest.methods.signTransaction.name
|
||||||
|
|| method === SessionRequest.methods.sendTransaction.name) {
|
||||||
|
if (event.params.request.params.length == 0) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
address = event.params.request.params[0].from
|
||||||
|
}
|
||||||
|
return SQUtils.ModelUtils.getFirstModelEntryIf(root.wcService.validAccounts, (account) => {
|
||||||
|
return account.address.toLowerCase() === address.toLowerCase();
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns null if the network is not found
|
||||||
|
function lookupNetworkFromEvent(event, method) {
|
||||||
|
if (SessionRequest.getSupportedMethods().includes(method) === false) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
let chainId = Helpers.chainIdFromEip155(event.params.chainId)
|
||||||
|
return SQUtils.ModelUtils.getByKey(networksModule.flatNetworks, "chainId", chainId)
|
||||||
|
}
|
||||||
|
|
||||||
|
function extractMethodData(event, method) {
|
||||||
|
if (method === SessionRequest.methods.personalSign.name ||
|
||||||
|
method === SessionRequest.methods.sign.name)
|
||||||
|
{
|
||||||
|
if (event.params.request.params.length < 1) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
var message = ""
|
||||||
|
let messageIndex = (method === SessionRequest.methods.personalSign.name ? 0 : 1)
|
||||||
|
let messageParam = event.params.request.tx.data
|
||||||
|
|
||||||
|
// There is no standard on how data is encoded. Therefore we support hex or utf8
|
||||||
|
if (Helpers.isHex(messageParam)) {
|
||||||
|
message = Helpers.hexToString(messageParam)
|
||||||
|
} else {
|
||||||
|
message = messageParam
|
||||||
|
}
|
||||||
|
return SessionRequest.methods.personalSign.buildDataObject(message)
|
||||||
|
} else if (method === SessionRequest.methods.signTypedData_v4.name ||
|
||||||
|
method === SessionRequest.methods.signTypedData.name)
|
||||||
|
{
|
||||||
|
if (event.params.request.params.length < 2) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
let jsonMessage = event.params.request.params[1]
|
||||||
|
let methodObj = method === SessionRequest.methods.signTypedData_v4.name
|
||||||
|
? SessionRequest.methods.signTypedData_v4
|
||||||
|
: SessionRequest.methods.signTypedData
|
||||||
|
return methodObj.buildDataObject(jsonMessage)
|
||||||
|
} else if (method === SessionRequest.methods.signTransaction.name) {
|
||||||
|
if (event.params.request.params.length == 0) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
let tx = event.params.request.params[0]
|
||||||
|
return SessionRequest.methods.signTransaction.buildDataObject(tx)
|
||||||
|
} else if (method === SessionRequest.methods.sendTransaction.name) {
|
||||||
|
if (event.params.request.params.length == 0) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
let tx = event.params.request.params[0]
|
||||||
|
return SessionRequest.methods.sendTransaction.buildDataObject(tx)
|
||||||
|
} else {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function executeSessionRequest(request, password, pin) {
|
||||||
|
if (!SessionRequest.getSupportedMethods().includes(request.method)) {
|
||||||
|
console.error("Unsupported method to execute: ", request.method)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (password !== "") {
|
||||||
|
var actionResult = ""
|
||||||
|
if (request.method === SessionRequest.methods.sign.name) {
|
||||||
|
actionResult = store.signMessageUnsafe(request.topic, request.id,
|
||||||
|
request.account.address, password,
|
||||||
|
SessionRequest.methods.personalSign.getMessageFromData(request.data))
|
||||||
|
} else if (request.method === SessionRequest.methods.personalSign.name) {
|
||||||
|
actionResult = store.signMessage(request.topic, request.id,
|
||||||
|
request.account.address, password,
|
||||||
|
SessionRequest.methods.personalSign.getMessageFromData(request.data))
|
||||||
|
} else if (request.method === SessionRequest.methods.signTypedData_v4.name ||
|
||||||
|
request.method === SessionRequest.methods.signTypedData.name)
|
||||||
|
{
|
||||||
|
let legacy = request.method === SessionRequest.methods.signTypedData.name
|
||||||
|
actionResult = store.safeSignTypedData(request.topic, request.id,
|
||||||
|
request.account.address, password,
|
||||||
|
SessionRequest.methods.signTypedData.getMessageFromData(request.data),
|
||||||
|
request.network.chainId, legacy)
|
||||||
|
} else if (request.method === SessionRequest.methods.signTransaction.name) {
|
||||||
|
let txObj = SessionRequest.methods.signTransaction.getTxObjFromData(request.data)
|
||||||
|
actionResult = store.signTransaction(request.topic, request.id,
|
||||||
|
request.account.address, request.network.chainId, password, txObj)
|
||||||
|
} else if (request.method === SessionRequest.methods.sendTransaction.name) {
|
||||||
|
let txObj = SessionRequest.methods.sendTransaction.getTxObjFromData(request.data)
|
||||||
|
actionResult = store.sendTransaction(request.topic, request.id,
|
||||||
|
request.account.address, request.network.chainId, password, txObj)
|
||||||
|
}
|
||||||
|
let isSuccessful = (actionResult != "")
|
||||||
|
if (isSuccessful) {
|
||||||
|
// acceptSessionRequest will trigger an sdk.sessionRequestUserAnswerResult signal
|
||||||
|
acceptSessionRequest(request.topic, request.method, request.id, actionResult)
|
||||||
|
} else {
|
||||||
|
root.sessionRequestResult(request, isSuccessful)
|
||||||
|
}
|
||||||
|
} else if (pin !== "") {
|
||||||
|
console.debug("TODO #15097 sign message using keycard: ", request.data)
|
||||||
|
} else {
|
||||||
|
console.error("No password or pin provided to sign message")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function acceptSessionRequest(topic, method, id, signature) {
|
||||||
|
console.debug(`WC DappsConnectorSDK.acceptSessionRequest; topic: "${topic}", id: ${root.requestID}, signature: "${signature}"`)
|
||||||
|
|
||||||
|
sessionRequestLoader.active = false
|
||||||
|
const hash = controller.createHash(signature)
|
||||||
|
controller.approveTransactionRequest(requestID, hash)
|
||||||
|
|
||||||
|
root.wcService.displayToastMessage(qsTr("Success to authenticate %1 from %2").arg(method).arg(root.dappInfo.url), false)
|
||||||
|
}
|
||||||
|
|
||||||
|
function getActiveSessions(dappInfos) {
|
||||||
|
let sessionTemplate = (dappUrl, dappName, dappIcon) => {
|
||||||
|
return {
|
||||||
|
"peer": {
|
||||||
|
"metadata": {
|
||||||
|
"description": "-",
|
||||||
|
"icons": [
|
||||||
|
dappIcon
|
||||||
|
],
|
||||||
|
"name": dappName,
|
||||||
|
"url": dappUrl
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"topic": dappUrl
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return sessionTemplate(dappInfos.url, dappInfos.name, dappInfos.icon)
|
||||||
|
}
|
||||||
|
|
||||||
|
function maxFeesUpdated(maxFees, maxFeesWei, haveEnoughFunds, symbol) {
|
||||||
|
let maxFeesText = `${maxFees.toFixed(2)} ${symbol}`;
|
||||||
|
let ethStr = "?";
|
||||||
|
|
||||||
|
try {
|
||||||
|
ethStr = globalUtils.wei2Eth(maxFeesWei, 9);
|
||||||
|
} catch (e) {
|
||||||
|
// Ignore error in case of tests and storybook where we don't have access to globalUtils
|
||||||
|
}
|
||||||
|
|
||||||
|
let maxFeesEthText = `${ethStr} ETH`;
|
||||||
|
|
||||||
|
return {
|
||||||
|
maxFeesText: maxFeesText,
|
||||||
|
maxFeesEthText: maxFeesEthText,
|
||||||
|
haveEnoughFunds: haveEnoughFunds
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function estimatedTimeUpdated(minMinutes, maxMinutes) {
|
||||||
|
return qsTr("%1-%2mins").arg(minMinutes).arg(maxMinutes)
|
||||||
|
}
|
||||||
|
|
||||||
|
function authenticate(request) {
|
||||||
|
return store.authenticateUser(request.topic, request.id, request.account.address)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
target: root.store
|
||||||
|
|
||||||
|
function onUserAuthenticated(topic, id, password, pin) {
|
||||||
|
var request = requests.findRequest(topic, id)
|
||||||
|
if (request === null) {
|
||||||
|
console.error(">Error finding event for topic", topic, "id", id)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
d.executeSessionRequest(request, password, pin)
|
||||||
|
}
|
||||||
|
|
||||||
|
function onUserAuthenticationFailed(topic, id) {
|
||||||
|
var request = requests.findRequest(topic, id)
|
||||||
|
let methodStr = SessionRequest.methodToUserString(request.method)
|
||||||
|
if (request === null || !methodStr) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
d.lookupSession(topic, function(session) {
|
||||||
|
if (session === null)
|
||||||
|
return
|
||||||
|
root.displayToastMessage(qsTr("Failed to authenticate %1 from %2").arg(methodStr).arg(session.peer.metadata.url), true)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Loader {
|
Loader {
|
||||||
id: connectDappLoader
|
id: connectDappLoader
|
||||||
|
|
||||||
|
@ -80,9 +383,119 @@ WalletConnectSDKBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loader {
|
||||||
|
id: sessionRequestLoader
|
||||||
|
|
||||||
|
active: false
|
||||||
|
|
||||||
|
onLoaded: item.open()
|
||||||
|
|
||||||
|
property SessionRequestResolved request: null
|
||||||
|
|
||||||
|
property var dappInfo: null
|
||||||
|
|
||||||
|
sourceComponent: DAppSignRequestModal {
|
||||||
|
loginType: request.account.migragedToKeycard ? Constants.LoginType.Keycard : root.loginType
|
||||||
|
visible: true
|
||||||
|
signingTransaction: true
|
||||||
|
|
||||||
|
dappUrl: request.dappUrl
|
||||||
|
dappIcon: request.dappIcon
|
||||||
|
dappName: request.dappName
|
||||||
|
|
||||||
|
accountColor: request.account.color
|
||||||
|
accountName: request.account.name
|
||||||
|
accountAddress: request.account.address
|
||||||
|
accountEmoji: request.account.emoji
|
||||||
|
|
||||||
|
networkName: request.network.chainName
|
||||||
|
networkIconPath: Style.svg(request.network.iconUrl)
|
||||||
|
|
||||||
|
currentCurrency: ""
|
||||||
|
fiatFees: request.maxFeesText
|
||||||
|
cryptoFees: request.maxFeesEthText
|
||||||
|
estimatedTime: ""
|
||||||
|
feesLoading: !request.maxFeesText || !request.maxFeesEthText
|
||||||
|
hasFees: signingTransaction
|
||||||
|
enoughFundsForTransaction: request.enoughFunds
|
||||||
|
enoughFundsForFees: request.enoughFunds
|
||||||
|
|
||||||
|
|
||||||
|
//payloadData: request.data
|
||||||
|
// method: request.method
|
||||||
|
// maxFeesText: request.maxFeesText
|
||||||
|
// maxFeesEthText: request.maxFeesEthText
|
||||||
|
// enoughFunds: request.enoughFunds
|
||||||
|
// estimatedTimeText: request.estimatedTimeText
|
||||||
|
|
||||||
|
onClosed: {
|
||||||
|
console.log("------------------------------------> onClosed")
|
||||||
|
sessionRequestLoader.active = false
|
||||||
|
controller.rejectTransactionSigning(root.requestID)
|
||||||
|
}
|
||||||
|
|
||||||
|
onAccepted: {
|
||||||
|
console.log("------------------------------------> onAccepted")
|
||||||
|
if (!request) {
|
||||||
|
console.error("Error signing: request is null")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
d.authenticate(request)
|
||||||
|
}
|
||||||
|
|
||||||
|
onRejected: {
|
||||||
|
console.log("------------------------------------> onRejected")
|
||||||
|
sessionRequestLoader.active = false
|
||||||
|
controller.rejectTransactionSigning(root.requestID)
|
||||||
|
root.wcService.displayToastMessage(qsTr("Failed to authenticate %1 from %2").arg(request.method).arg(request.dappUrl), true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Component {
|
||||||
|
id: sessionRequestComponent
|
||||||
|
|
||||||
|
SessionRequestResolved {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SessionRequestsModel {
|
||||||
|
id: requests
|
||||||
|
}
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: controller
|
target: controller
|
||||||
|
|
||||||
|
onDappValidatesTransaction: function(requestID, dappInfoString) {
|
||||||
|
var dappInfo = JSON.parse(dappInfoString)
|
||||||
|
root.dappInfo = dappInfo
|
||||||
|
var txArgsParams = JSON.parse(dappInfo.txArgs)
|
||||||
|
root.txArgs = txArgsParams
|
||||||
|
let event = {
|
||||||
|
"id": root.requestID,
|
||||||
|
"topic": dappInfo.url,
|
||||||
|
"params": {
|
||||||
|
"chainId": `eip155:${dappInfo.chainID}`,
|
||||||
|
"request": {
|
||||||
|
"method": "personal_sign",
|
||||||
|
"tx": {
|
||||||
|
"data": txArgsParams.data,
|
||||||
|
},
|
||||||
|
"params": [
|
||||||
|
txArgsParams.from,
|
||||||
|
txArgsParams.to,
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
d.sessionRequestEvent(event)
|
||||||
|
|
||||||
|
sessionRequestLoader.active = true
|
||||||
|
root.requestID = requestID
|
||||||
|
}
|
||||||
|
|
||||||
onDappRequestsToConnect: function(requestID, dappInfoString) {
|
onDappRequestsToConnect: function(requestID, dappInfoString) {
|
||||||
var dappInfo = JSON.parse(dappInfoString)
|
var dappInfo = JSON.parse(dappInfoString)
|
||||||
|
|
||||||
|
|
|
@ -242,6 +242,7 @@ QObject {
|
||||||
|
|
||||||
onSessionRequest: (request) => {
|
onSessionRequest: (request) => {
|
||||||
timeoutTimer.stop()
|
timeoutTimer.stop()
|
||||||
|
console.log("---> onSessionRequest :")
|
||||||
root.sessionRequest(request)
|
root.sessionRequest(request)
|
||||||
}
|
}
|
||||||
onDisplayToastMessage: (message, error) => {
|
onDisplayToastMessage: (message, error) => {
|
||||||
|
|
|
@ -28,9 +28,9 @@ QObject {
|
||||||
readonly property alias dappUrl: d.dappUrl
|
readonly property alias dappUrl: d.dappUrl
|
||||||
readonly property alias dappIcon: d.dappIcon
|
readonly property alias dappIcon: d.dappIcon
|
||||||
|
|
||||||
property string maxFeesText: ""
|
property alias maxFeesText: d.maxFeesText
|
||||||
property string maxFeesEthText: ""
|
property alias maxFeesEthText: d.maxFeesEthText
|
||||||
property bool enoughFunds: false
|
property alias enoughFunds: d.enoughFunds
|
||||||
|
|
||||||
function resolveDappInfoFromSession(session) {
|
function resolveDappInfoFromSession(session) {
|
||||||
let meta = session.peer.metadata
|
let meta = session.peer.metadata
|
||||||
|
@ -41,6 +41,13 @@ QObject {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function resolveFees(fees) {
|
||||||
|
d.maxFeesText = fees.maxFeesText
|
||||||
|
d.maxFeesEthText = fees.maxFeesEthText
|
||||||
|
d.enoughFunds = fees.enoughFunds
|
||||||
|
d.estimatedTimeText = fees.estimatedTimeText
|
||||||
|
}
|
||||||
|
|
||||||
// dApp info
|
// dApp info
|
||||||
QtObject {
|
QtObject {
|
||||||
id: d
|
id: d
|
||||||
|
@ -48,5 +55,9 @@ QObject {
|
||||||
property string dappName
|
property string dappName
|
||||||
property string dappUrl
|
property string dappUrl
|
||||||
property url dappIcon
|
property url dappIcon
|
||||||
|
|
||||||
|
property string maxFeesText: ""
|
||||||
|
property string maxFeesEthText: ""
|
||||||
|
property bool enoughFunds: false
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2062,6 +2062,9 @@ Item {
|
||||||
active: WalletStore.RootStore.walletSectionInst.walletReady
|
active: WalletStore.RootStore.walletSectionInst.walletReady
|
||||||
controller: WalletStore.RootStore.dappsConnectorController
|
controller: WalletStore.RootStore.dappsConnectorController
|
||||||
wcService: Global.walletConnectService
|
wcService: Global.walletConnectService
|
||||||
|
store: DAppsStore {
|
||||||
|
controller: WalletStore.RootStore.walletConnectController
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d07f9b5b162c078f71bf19a189e2e26c118a0db4
|
Subproject commit 6a155bc6dc431b01e64e195b8206bcdbea48d394
|
Loading…
Reference in New Issue