2024-05-31 09:58:47 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
|
|
|
|
import AppLayouts.Wallet.services.dapps 1.0
|
2024-06-12 13:48:44 +00:00
|
|
|
import AppLayouts.Wallet.services.dapps.types 1.0
|
2024-07-17 15:49:30 +00:00
|
|
|
import AppLayouts.Wallet.stores 1.0 as WalletStore
|
2024-05-31 09:58:47 +00:00
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
import StatusQ.Core.Utils 0.1 as SQUtils
|
2024-05-31 09:58:47 +00:00
|
|
|
|
|
|
|
import shared.stores 1.0
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
import "types"
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
SQUtils.QObject {
|
2024-05-31 09:58:47 +00:00
|
|
|
id: root
|
|
|
|
|
|
|
|
required property WalletConnectSDKBase sdk
|
|
|
|
required property DAppsStore store
|
2024-06-29 20:24:05 +00:00
|
|
|
required property var accountsModel
|
|
|
|
required property var networksModel
|
2024-07-17 10:46:43 +00:00
|
|
|
required property CurrenciesStore currenciesStore
|
2024-07-17 15:49:30 +00:00
|
|
|
required property WalletStore.WalletAssetsStore assetsStore
|
2024-05-31 09:58:47 +00:00
|
|
|
|
|
|
|
property alias requestsModel: requests
|
|
|
|
|
|
|
|
function rejectSessionRequest(request, userRejected) {
|
|
|
|
let error = userRejected ? false : true
|
|
|
|
sdk.rejectSessionRequest(request.topic, request.id, error)
|
|
|
|
}
|
|
|
|
|
2024-06-04 20:45:03 +00:00
|
|
|
/// Beware, it will fail if called multiple times before getting an answer
|
2024-07-17 10:46:43 +00:00
|
|
|
function authenticate(request, payload) {
|
|
|
|
return store.authenticateUser(request.topic, request.id, request.account.address, payload)
|
2024-06-04 20:45:03 +00:00
|
|
|
}
|
|
|
|
|
2024-05-31 09:58:47 +00:00
|
|
|
signal sessionRequest(SessionRequestResolved request)
|
2024-06-04 20:45:03 +00:00
|
|
|
signal displayToastMessage(string message, bool error)
|
2024-06-12 13:48:44 +00:00
|
|
|
signal sessionRequestResult(/*model entry of SessionRequestResolved*/ var request, bool isSuccess)
|
2024-07-17 10:46:43 +00:00
|
|
|
signal maxFeesUpdated(real fiatMaxFees, var /* Big */ ethMaxFees, bool haveEnoughFunds, bool haveEnoughFees, string symbol, var feesInfo)
|
2024-07-09 17:49:00 +00:00
|
|
|
// Reports Constants.TransactionEstimatedTime values
|
|
|
|
signal estimatedTimeUpdated(int estimatedTimeEnum)
|
2024-05-31 09:58:47 +00:00
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: sdk
|
|
|
|
|
|
|
|
function onSessionRequestEvent(event) {
|
|
|
|
let obj = d.resolveAsync(event)
|
|
|
|
if (obj === null) {
|
|
|
|
let error = true
|
|
|
|
sdk.rejectSessionRequest(event.topic, event.id, error)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
requests.enqueue(obj)
|
|
|
|
}
|
2024-06-04 20:45:03 +00:00
|
|
|
|
|
|
|
function onSessionRequestUserAnswerResult(topic, id, accept, error) {
|
2024-07-17 10:46:43 +00:00
|
|
|
let request = requests.findRequest(topic, id)
|
2024-06-04 20:45:03 +00:00
|
|
|
if (request === null) {
|
|
|
|
console.error("Error finding event for topic", topic, "id", id)
|
|
|
|
return
|
|
|
|
}
|
2024-06-12 13:48:44 +00:00
|
|
|
let methodStr = SessionRequest.methodToUserString(request.method)
|
2024-06-04 20:45:03 +00:00
|
|
|
if (!methodStr) {
|
|
|
|
console.error("Error finding user string for method", request.method)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
d.lookupSession(topic, function(session) {
|
|
|
|
if (session === null)
|
|
|
|
return
|
|
|
|
if (error) {
|
|
|
|
root.displayToastMessage(qsTr("Fail to %1 from %2").arg(methodStr).arg(session.peer.metadata.url), true)
|
2024-06-07 16:54:19 +00:00
|
|
|
|
2024-06-12 13:48:44 +00:00
|
|
|
root.sessionRequestResult(request, false /*isSuccessful*/)
|
2024-06-07 16:54:19 +00:00
|
|
|
|
2024-06-04 20:45:03 +00:00
|
|
|
console.error(`Error accepting session request for topic: ${topic}, id: ${id}, accept: ${accept}, error: ${error}`)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let actionStr = accept ? qsTr("accepted") : qsTr("rejected")
|
|
|
|
root.displayToastMessage("%1 %2 %3".arg(session.peer.metadata.url).arg(methodStr).arg(actionStr), false)
|
2024-06-07 16:54:19 +00:00
|
|
|
|
2024-06-12 13:48:44 +00:00
|
|
|
root.sessionRequestResult(request, true /*isSuccessful*/)
|
2024-06-04 20:45:03 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: root.store
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
function onUserAuthenticated(topic, id, password, pin, payload) {
|
2024-06-04 20:45:03 +00:00
|
|
|
var request = requests.findRequest(topic, id)
|
|
|
|
if (request === null) {
|
|
|
|
console.error("Error finding event for topic", topic, "id", id)
|
|
|
|
return
|
|
|
|
}
|
2024-07-17 10:46:43 +00:00
|
|
|
d.executeSessionRequest(request, password, pin, payload)
|
2024-06-04 20:45:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function onUserAuthenticationFailed(topic, id) {
|
2024-07-17 10:46:43 +00:00
|
|
|
let request = requests.findRequest(topic, id)
|
2024-06-12 13:48:44 +00:00
|
|
|
let methodStr = SessionRequest.methodToUserString(request.method)
|
2024-06-04 20:45:03 +00:00
|
|
|
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)
|
|
|
|
})
|
|
|
|
}
|
2024-05-31 09:58:47 +00:00
|
|
|
}
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
SQUtils.QObject {
|
2024-05-31 09:58:47 +00:00
|
|
|
id: d
|
|
|
|
|
|
|
|
function resolveAsync(event) {
|
|
|
|
let method = event.params.request.method
|
|
|
|
let account = lookupAccountFromEvent(event, method)
|
2024-06-20 20:34:59 +00:00
|
|
|
if(!account) {
|
|
|
|
console.error("Error finding account for event", JSON.stringify(event))
|
|
|
|
return null
|
|
|
|
}
|
2024-05-31 09:58:47 +00:00
|
|
|
let network = lookupNetworkFromEvent(event, method)
|
2024-06-20 20:34:59 +00:00
|
|
|
if(!network) {
|
|
|
|
console.error("Error finding network for event", JSON.stringify(event))
|
|
|
|
return null
|
|
|
|
}
|
2024-07-17 15:49:30 +00:00
|
|
|
|
2024-05-31 09:58:47 +00:00
|
|
|
let data = extractMethodData(event, method)
|
2024-06-20 20:34:59 +00:00
|
|
|
if(!data) {
|
|
|
|
console.error("Error in event data lookup", JSON.stringify(event))
|
|
|
|
return null
|
|
|
|
}
|
2024-07-17 16:36:32 +00:00
|
|
|
|
|
|
|
const interpreted = d.prepareData(method, data)
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
let enoughFunds = !d.isTransactionMethod(method)
|
2024-05-31 09:58:47 +00:00
|
|
|
let obj = sessionRequestComponent.createObject(null, {
|
|
|
|
event,
|
|
|
|
topic: event.topic,
|
|
|
|
id: event.id,
|
|
|
|
method,
|
|
|
|
account,
|
|
|
|
network,
|
2024-06-18 19:45:56 +00:00
|
|
|
data,
|
2024-07-17 16:36:32 +00:00
|
|
|
preparedData: interpreted.preparedData,
|
2024-06-23 08:27:29 +00:00
|
|
|
maxFeesText: "?",
|
|
|
|
maxFeesEthText: "?",
|
2024-07-17 10:46:43 +00:00
|
|
|
enoughFunds: enoughFunds,
|
2024-05-31 09:58:47 +00:00
|
|
|
})
|
|
|
|
if (obj === null) {
|
|
|
|
console.error("Error creating SessionRequestResolved for event")
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check later to have a valid request object
|
2024-06-23 08:27:29 +00:00
|
|
|
if (!SessionRequest.getSupportedMethods().includes(method)) {
|
2024-05-31 09:58:47 +00:00
|
|
|
console.error("Unsupported method", method)
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
2024-06-04 20:45:03 +00:00
|
|
|
d.lookupSession(obj.topic, function(session) {
|
|
|
|
if (session === null) {
|
|
|
|
console.error("DAppsRequestHandler.lookupSession: error finding session for topic", obj.topic)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
obj.resolveDappInfoFromSession(session)
|
|
|
|
root.sessionRequest(obj)
|
2024-07-09 17:49:00 +00:00
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
if (!d.isTransactionMethod(method)) {
|
2024-07-11 21:00:15 +00:00
|
|
|
return
|
|
|
|
}
|
2024-07-09 17:49:00 +00:00
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
let estimatedTimeEnum = getEstimatedTimeInterval(data, method, obj.network.chainId)
|
|
|
|
root.estimatedTimeUpdated(estimatedTimeEnum)
|
|
|
|
|
2024-07-17 15:49:30 +00:00
|
|
|
const mainNet = lookupMainnetNetwork()
|
|
|
|
let mainChainId = obj.network.chainId
|
|
|
|
if (!!mainNet) {
|
|
|
|
mainChainId = mainNet.chainId
|
|
|
|
} else {
|
|
|
|
console.error("Error finding mainnet network")
|
|
|
|
}
|
|
|
|
let st = getEstimatedFeesStatus(data, method, obj.network.chainId, mainChainId)
|
|
|
|
|
2024-07-17 16:36:32 +00:00
|
|
|
let fundsStatus = checkFundsStatus(st.feesInfo.maxFees, st.feesInfo.l1GasFee, account.address, obj.network.chainId, mainNet.chainId, interpreted.value)
|
2024-07-09 17:49:00 +00:00
|
|
|
|
2024-07-17 15:49:30 +00:00
|
|
|
root.maxFeesUpdated(st.fiatMaxFees.toNumber(), st.maxFeesEth, fundsStatus.haveEnoughFunds,
|
|
|
|
fundsStatus.haveEnoughForFees, st.symbol, st.feesInfo)
|
2024-05-31 09:58:47 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return obj
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns null if the account is not found
|
|
|
|
function lookupAccountFromEvent(event, method) {
|
2024-07-17 10:46:43 +00:00
|
|
|
let address = ""
|
2024-06-12 13:48:44 +00:00
|
|
|
if (method === SessionRequest.methods.personalSign.name) {
|
2024-05-31 09:58:47 +00:00
|
|
|
if (event.params.request.params.length < 2) {
|
|
|
|
return null
|
|
|
|
}
|
2024-06-07 16:54:19 +00:00
|
|
|
address = event.params.request.params[1]
|
2024-07-01 21:02:05 +00:00
|
|
|
} 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)
|
|
|
|
{
|
2024-06-07 16:54:19 +00:00
|
|
|
if (event.params.request.params.length < 2) {
|
|
|
|
return null
|
2024-05-31 09:58:47 +00:00
|
|
|
}
|
2024-06-07 16:54:19 +00:00
|
|
|
address = event.params.request.params[0]
|
2024-07-17 10:46:43 +00:00
|
|
|
} else if (d.isTransactionMethod(method)) {
|
2024-06-12 13:48:44 +00:00
|
|
|
if (event.params.request.params.length == 0) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
address = event.params.request.params[0].from
|
2024-05-31 09:58:47 +00:00
|
|
|
}
|
2024-07-17 10:46:43 +00:00
|
|
|
return SQUtils.ModelUtils.getFirstModelEntryIf(root.accountsModel, (account) => {
|
2024-06-29 20:24:05 +00:00
|
|
|
return account.address.toLowerCase() === address.toLowerCase();
|
2024-06-20 20:34:59 +00:00
|
|
|
})
|
2024-05-31 09:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns null if the network is not found
|
|
|
|
function lookupNetworkFromEvent(event, method) {
|
2024-06-12 13:48:44 +00:00
|
|
|
if (SessionRequest.getSupportedMethods().includes(method) === false) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
let chainId = Helpers.chainIdFromEip155(event.params.chainId)
|
2024-07-17 10:46:43 +00:00
|
|
|
return SQUtils.ModelUtils.getByKey(root.networksModel, "chainId", chainId)
|
2024-05-31 09:58:47 +00:00
|
|
|
}
|
|
|
|
|
2024-07-17 15:49:30 +00:00
|
|
|
/// Returns null if the network is not found
|
|
|
|
function lookupMainnetNetwork() {
|
|
|
|
return SQUtils.ModelUtils.getByKey(root.networksModel, "layer", 1)
|
|
|
|
}
|
|
|
|
|
2024-05-31 09:58:47 +00:00
|
|
|
function extractMethodData(event, method) {
|
2024-07-01 21:02:05 +00:00
|
|
|
if (method === SessionRequest.methods.personalSign.name ||
|
|
|
|
method === SessionRequest.methods.sign.name)
|
|
|
|
{
|
|
|
|
if (event.params.request.params.length < 1) {
|
2024-05-31 09:58:47 +00:00
|
|
|
return null
|
|
|
|
}
|
2024-07-17 10:46:43 +00:00
|
|
|
let message = ""
|
2024-07-01 21:02:05 +00:00
|
|
|
let messageIndex = (method === SessionRequest.methods.personalSign.name ? 0 : 1)
|
|
|
|
let messageParam = event.params.request.params[messageIndex]
|
2024-06-07 16:54:19 +00:00
|
|
|
// 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
|
|
|
|
}
|
2024-06-12 13:48:44 +00:00
|
|
|
return SessionRequest.methods.personalSign.buildDataObject(message)
|
2024-07-01 21:02:05 +00:00
|
|
|
} else if (method === SessionRequest.methods.signTypedData_v4.name ||
|
|
|
|
method === SessionRequest.methods.signTypedData.name)
|
|
|
|
{
|
2024-06-07 16:54:19 +00:00
|
|
|
if (event.params.request.params.length < 2) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
let jsonMessage = event.params.request.params[1]
|
2024-07-01 21:02:05 +00:00
|
|
|
let methodObj = method === SessionRequest.methods.signTypedData_v4.name
|
|
|
|
? SessionRequest.methods.signTypedData_v4
|
|
|
|
: SessionRequest.methods.signTypedData
|
|
|
|
return methodObj.buildDataObject(jsonMessage)
|
2024-06-12 13:48:44 +00:00
|
|
|
} else if (method === SessionRequest.methods.signTransaction.name) {
|
|
|
|
if (event.params.request.params.length == 0) {
|
|
|
|
return null
|
2024-06-04 20:45:03 +00:00
|
|
|
}
|
2024-06-12 13:48:44 +00:00
|
|
|
let tx = event.params.request.params[0]
|
|
|
|
return SessionRequest.methods.signTransaction.buildDataObject(tx)
|
2024-06-23 08:27:29 +00:00
|
|
|
} 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)
|
2024-06-12 13:48:44 +00:00
|
|
|
} else {
|
|
|
|
return null
|
2024-06-04 20:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function lookupSession(topicToLookup, callback) {
|
|
|
|
sdk.getActiveSessions((res) => {
|
|
|
|
Object.keys(res).forEach((topic) => {
|
|
|
|
if (topic === topicToLookup) {
|
|
|
|
let session = res[topic]
|
|
|
|
callback(session)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
function executeSessionRequest(request, password, pin, payload) {
|
2024-06-12 13:48:44 +00:00
|
|
|
if (!SessionRequest.getSupportedMethods().includes(request.method)) {
|
|
|
|
console.error("Unsupported method to execute: ", request.method)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (password !== "") {
|
2024-07-17 10:46:43 +00:00
|
|
|
let actionResult = ""
|
2024-07-01 21:02:05 +00:00
|
|
|
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) {
|
2024-06-23 08:27:29 +00:00
|
|
|
actionResult = store.signMessage(request.topic, request.id,
|
2024-06-12 13:48:44 +00:00
|
|
|
request.account.address, password,
|
|
|
|
SessionRequest.methods.personalSign.getMessageFromData(request.data))
|
2024-07-01 21:02:05 +00:00
|
|
|
} 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,
|
2024-06-12 13:48:44 +00:00
|
|
|
request.account.address, password,
|
2024-07-01 21:02:05 +00:00
|
|
|
SessionRequest.methods.signTypedData.getMessageFromData(request.data),
|
|
|
|
request.network.chainId, legacy)
|
2024-07-17 10:46:43 +00:00
|
|
|
} else if (d.isTransactionMethod(request.method)) {
|
|
|
|
let txObj = d.getTxObject(request.method, request.data)
|
|
|
|
if (!!payload) {
|
|
|
|
let feesInfoJson = payload
|
|
|
|
let hexFeesJson = root.store.convertFeesInfoToHex(feesInfoJson)
|
|
|
|
if (!!hexFeesJson) {
|
|
|
|
let feesInfo = JSON.parse(hexFeesJson)
|
|
|
|
if (feesInfo.maxFeePerGas) {
|
|
|
|
txObj.maxFeePerGas = feesInfo.maxFeePerGas
|
|
|
|
}
|
|
|
|
if (feesInfo.maxPriorityFeePerGas) {
|
|
|
|
txObj.maxPriorityFeePerGas = feesInfo.maxPriorityFeePerGas
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete txObj.gasLimit
|
|
|
|
delete txObj.gasPrice
|
|
|
|
}
|
|
|
|
// Remove nonce from txObj to be auto-filled by the wallet
|
|
|
|
delete txObj.nonce
|
|
|
|
|
|
|
|
if (request.method === SessionRequest.methods.signTransaction.name) {
|
|
|
|
actionResult = store.signTransaction(request.topic, request.id,
|
|
|
|
request.account.address, request.network.chainId, password, txObj)
|
|
|
|
} else if (request.method === SessionRequest.methods.sendTransaction.name) {
|
|
|
|
actionResult = store.sendTransaction(request.topic, request.id,
|
|
|
|
request.account.address, request.network.chainId, password, txObj)
|
|
|
|
}
|
2024-06-12 13:48:44 +00:00
|
|
|
}
|
2024-07-17 10:46:43 +00:00
|
|
|
|
2024-06-23 08:27:29 +00:00
|
|
|
let isSuccessful = (actionResult != "")
|
2024-06-12 13:48:44 +00:00
|
|
|
if (isSuccessful) {
|
|
|
|
// acceptSessionRequest will trigger an sdk.sessionRequestUserAnswerResult signal
|
2024-06-23 08:27:29 +00:00
|
|
|
sdk.acceptSessionRequest(request.topic, request.id, actionResult)
|
2024-06-07 16:54:19 +00:00
|
|
|
} else {
|
2024-06-12 13:48:44 +00:00
|
|
|
root.sessionRequestResult(request, isSuccessful)
|
2024-06-07 16:54:19 +00:00
|
|
|
}
|
2024-06-12 13:48:44 +00:00
|
|
|
} else if (pin !== "") {
|
|
|
|
console.debug("TODO #15097 sign message using keycard: ", request.data)
|
2024-06-04 20:45:03 +00:00
|
|
|
} else {
|
2024-06-12 13:48:44 +00:00
|
|
|
console.error("No password or pin provided to sign message")
|
2024-06-04 20:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
2024-07-09 17:49:00 +00:00
|
|
|
|
|
|
|
// Returns Constants.TransactionEstimatedTime
|
|
|
|
function getEstimatedTimeInterval(data, method, chainId) {
|
2024-07-17 10:46:43 +00:00
|
|
|
let tx = {}
|
|
|
|
let maxFeePerGas = ""
|
|
|
|
if (d.isTransactionMethod(method)) {
|
|
|
|
tx = d.getTxObject(method, data)
|
|
|
|
// Empty string instructs getEstimatedTime to fetch the blockchain value
|
|
|
|
if (!!tx.maxFeePerGas) {
|
|
|
|
maxFeePerGas = tx.maxFeePerGas
|
|
|
|
} else if (!!tx.gasPrice) {
|
|
|
|
maxFeePerGas = tx.gasPrice
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return root.store.getEstimatedTime(chainId, maxFeePerGas)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns {
|
|
|
|
// maxFees -> Big number in Gwei
|
|
|
|
// maxFeePerGas
|
|
|
|
// maxPriorityFeePerGas
|
|
|
|
// gasPrice
|
|
|
|
// }
|
2024-07-17 15:49:30 +00:00
|
|
|
function getEstimatedMaxFees(data, method, chainId, mainNetChainId) {
|
2024-07-17 10:46:43 +00:00
|
|
|
let tx = {}
|
|
|
|
if (d.isTransactionMethod(method)) {
|
|
|
|
tx = d.getTxObject(method, data)
|
2024-07-09 17:49:00 +00:00
|
|
|
}
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
let Math = SQUtils.AmountsArithmetic
|
|
|
|
let gasLimit = Math.fromString("21000")
|
|
|
|
let gasPrice, maxFeePerGas, maxPriorityFeePerGas
|
2024-07-17 15:49:30 +00:00
|
|
|
let l1GasFee = Math.fromNumber(0)
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
// Beware, the tx values are standard blockchain hex big number values; the fees values are nim's float64 values, hence the complex conversions
|
|
|
|
if (!!tx.maxFeePerGas && !!tx.maxPriorityFeePerGas) {
|
|
|
|
let maxFeePerGasDec = root.store.hexToDec(tx.maxFeePerGas)
|
|
|
|
gasPrice = Math.fromString(maxFeePerGasDec)
|
|
|
|
// Source fees info from the incoming transaction for when we process it
|
|
|
|
maxFeePerGas = maxFeePerGasDec
|
|
|
|
let maxPriorityFeePerGasDec = root.store.hexToDec(tx.maxPriorityFeePerGas)
|
|
|
|
maxPriorityFeePerGas = maxPriorityFeePerGasDec
|
|
|
|
} else {
|
|
|
|
let fees = root.store.getSuggestedFees(chainId)
|
|
|
|
maxPriorityFeePerGas = fees.maxPriorityFeePerGas
|
|
|
|
if (fees.eip1559Enabled) {
|
|
|
|
if (!!fees.maxFeePerGasM) {
|
2024-07-17 15:49:30 +00:00
|
|
|
gasPrice = Math.fromNumber(fees.maxFeePerGasM)
|
2024-07-17 10:46:43 +00:00
|
|
|
maxFeePerGas = fees.maxFeePerGasM
|
|
|
|
} else if(!!tx.maxFeePerGas) {
|
|
|
|
let maxFeePerGasDec = root.store.hexToDec(tx.maxFeePerGas)
|
|
|
|
gasPrice = Math.fromString(maxFeePerGasDec)
|
|
|
|
maxFeePerGas = maxFeePerGasDec
|
|
|
|
} else {
|
|
|
|
console.error("Error fetching maxFeePerGas from fees or tx objects")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!!fees.gasPrice) {
|
2024-07-17 15:49:30 +00:00
|
|
|
gasPrice = Math.fromNumber(fees.gasPrice)
|
2024-07-17 10:46:43 +00:00
|
|
|
} else {
|
|
|
|
console.error("Error fetching suggested fees")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2024-07-17 15:49:30 +00:00
|
|
|
l1GasFee = Math.fromNumber(fees.l1GasFee)
|
2024-07-17 10:46:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let maxFees = Math.times(gasLimit, gasPrice)
|
2024-07-17 15:49:30 +00:00
|
|
|
return {maxFees, maxFeePerGas, maxPriorityFeePerGas, gasPrice, l1GasFee}
|
2024-07-17 10:46:43 +00:00
|
|
|
}
|
|
|
|
|
2024-07-17 15:49:30 +00:00
|
|
|
// Returned values are Big numbers
|
|
|
|
function getEstimatedFeesStatus(data, method, chainId, mainNetChainId) {
|
2024-07-17 10:46:43 +00:00
|
|
|
let Math = SQUtils.AmountsArithmetic
|
|
|
|
|
2024-07-17 15:49:30 +00:00
|
|
|
let feesInfo = getEstimatedMaxFees(data, method, chainId, mainNetChainId)
|
2024-07-17 10:46:43 +00:00
|
|
|
|
2024-07-17 15:49:30 +00:00
|
|
|
let totalMaxFees = Math.sum(feesInfo.maxFees, feesInfo.l1GasFee)
|
2024-07-17 16:36:32 +00:00
|
|
|
let maxFeesEth = Math.div(totalMaxFees, Math.fromNumber(1, 9))
|
2024-07-17 10:46:43 +00:00
|
|
|
|
|
|
|
let maxFeesEthStr = maxFeesEth.toString()
|
2024-07-17 15:49:30 +00:00
|
|
|
let fiatMaxFeesStr = root.currenciesStore.getFiatValue(maxFeesEthStr, Constants.ethToken)
|
|
|
|
let fiatMaxFees = Math.fromString(fiatMaxFeesStr)
|
|
|
|
let symbol = root.currenciesStore.currentCurrencySymbol
|
|
|
|
|
|
|
|
return {fiatMaxFees, maxFeesEth, symbol, feesInfo}
|
|
|
|
}
|
2024-07-17 10:46:43 +00:00
|
|
|
|
2024-07-17 16:36:32 +00:00
|
|
|
function getBalanceInEth(balances, address, chainId) {
|
|
|
|
const Math = SQUtils.AmountsArithmetic
|
2024-07-17 15:49:30 +00:00
|
|
|
let accEth = SQUtils.ModelUtils.getFirstModelEntryIf(balances, (balance) => {
|
|
|
|
return balance.account.toLowerCase() === address.toLowerCase() && balance.chainId === chainId
|
|
|
|
})
|
|
|
|
if (!accEth) {
|
|
|
|
console.error("Error balance lookup for account ", address, " on chain ", chainId)
|
2024-07-17 16:36:32 +00:00
|
|
|
return null
|
2024-07-17 15:49:30 +00:00
|
|
|
}
|
|
|
|
let accountFundsWei = Math.fromString(accEth.balance)
|
2024-07-17 16:36:32 +00:00
|
|
|
return Math.div(accountFundsWei, Math.fromNumber(1, 18))
|
2024-07-17 15:49:30 +00:00
|
|
|
}
|
|
|
|
|
2024-07-17 16:36:32 +00:00
|
|
|
// Returns {haveEnoughForFees, haveEnoughFunds} and true in case of error not to block request
|
|
|
|
function checkFundsStatus(maxFees, l1GasFee, address, chainId, mainNetChainId, valueEth) {
|
2024-07-17 15:49:30 +00:00
|
|
|
let Math = SQUtils.AmountsArithmetic
|
|
|
|
|
2024-07-17 16:36:32 +00:00
|
|
|
let haveEnoughForFees = true
|
2024-07-17 10:46:43 +00:00
|
|
|
let haveEnoughFunds = true
|
2024-07-17 15:49:30 +00:00
|
|
|
|
|
|
|
let token = SQUtils.ModelUtils.getByKey(root.assetsStore.groupedAccountAssetsModel, "tokensKey", Constants.ethToken)
|
|
|
|
if (!token || !token.balances) {
|
|
|
|
console.error("Error token balances lookup for ETH")
|
|
|
|
return {haveEnoughForFees, haveEnoughFunds}
|
|
|
|
}
|
|
|
|
|
2024-07-17 16:36:32 +00:00
|
|
|
let chainBalance = getBalanceInEth(token.balances, address, chainId)
|
|
|
|
if (!chainBalance) {
|
|
|
|
console.error("Error fetching chain balance")
|
|
|
|
return {haveEnoughForFees, haveEnoughFunds}
|
|
|
|
}
|
|
|
|
haveEnoughFunds = Math.cmp(chainBalance, valueEth) >= 0
|
|
|
|
if (haveEnoughFunds) {
|
|
|
|
chainBalance = Math.sub(chainBalance, valueEth)
|
|
|
|
|
|
|
|
if (chainId == mainNetChainId) {
|
|
|
|
const finalFees = Math.sum(maxFees, l1GasFee)
|
|
|
|
let feesEth = Math.div(finalFees, Math.fromNumber(1, 9))
|
|
|
|
haveEnoughForFees = Math.cmp(chainBalance, feesEth) >= 0
|
|
|
|
} else {
|
|
|
|
const feesChain = Math.div(maxFees, Math.fromNumber(1, 9))
|
|
|
|
const haveEnoughOnChain = Math.cmp(chainBalance, feesChain) >= 0
|
|
|
|
|
|
|
|
const mainBalance = getBalanceInEth(token.balances, address, mainNetChainId)
|
|
|
|
if (!mainBalance) {
|
|
|
|
console.error("Error fetching mainnet balance")
|
|
|
|
return {haveEnoughForFees, haveEnoughFunds}
|
|
|
|
}
|
|
|
|
const feesMain = Math.div(l1GasFee, Math.fromNumber(1, 9))
|
|
|
|
const haveEnoughOnMain = Math.cmp(mainBalance, feesMain) >= 0
|
|
|
|
|
|
|
|
haveEnoughForFees = haveEnoughOnChain && haveEnoughOnMain
|
|
|
|
}
|
2024-07-17 15:49:30 +00:00
|
|
|
} else {
|
2024-07-17 16:36:32 +00:00
|
|
|
haveEnoughForFees = false
|
2024-07-17 15:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {haveEnoughForFees, haveEnoughFunds}
|
2024-07-17 10:46:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function isTransactionMethod(method) {
|
|
|
|
return method === SessionRequest.methods.signTransaction.name
|
|
|
|
|| method === SessionRequest.methods.sendTransaction.name
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTxObject(method, data) {
|
|
|
|
let tx
|
2024-07-09 17:49:00 +00:00
|
|
|
if (method === SessionRequest.methods.signTransaction.name) {
|
|
|
|
tx = SessionRequest.methods.signTransaction.getTxObjFromData(data)
|
|
|
|
} else if (method === SessionRequest.methods.sendTransaction.name) {
|
|
|
|
tx = SessionRequest.methods.sendTransaction.getTxObjFromData(data)
|
2024-07-17 10:46:43 +00:00
|
|
|
} else {
|
|
|
|
console.error("Not a transaction method")
|
2024-07-09 17:49:00 +00:00
|
|
|
}
|
2024-07-17 10:46:43 +00:00
|
|
|
return tx
|
2024-07-09 17:49:00 +00:00
|
|
|
}
|
2024-07-17 16:36:32 +00:00
|
|
|
|
|
|
|
// returns {
|
|
|
|
// preparedData,
|
|
|
|
// value // null or ETH Big number
|
|
|
|
// }
|
|
|
|
function prepareData(method, data) {
|
|
|
|
let payload = null
|
|
|
|
switch(method) {
|
|
|
|
case SessionRequest.methods.personalSign.name: {
|
|
|
|
payload = SessionRequest.methods.personalSign.getMessageFromData(data)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
case SessionRequest.methods.sign.name: {
|
|
|
|
payload = SessionRequest.methods.sign.getMessageFromData(data)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
case SessionRequest.methods.signTypedData_v4.name: {
|
|
|
|
const stringPayload = SessionRequest.methods.signTypedData_v4.getMessageFromData(data)
|
|
|
|
payload = JSON.stringify(JSON.parse(stringPayload), null, 2)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
case SessionRequest.methods.signTypedData.name: {
|
|
|
|
const stringPayload = SessionRequest.methods.signTypedData.getMessageFromData(data)
|
|
|
|
payload = JSON.stringify(JSON.parse(stringPayload), null, 2)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// For transaction we process the data in a different way
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
let value = SQUtils.AmountsArithmetic.fromNumber(0)
|
|
|
|
if (d.isTransactionMethod(method)) {
|
|
|
|
let txObj = d.getTxObject(method, data)
|
|
|
|
let tx = Object.assign({}, txObj)
|
|
|
|
if (tx.value) {
|
|
|
|
value = hexToEth(tx.value)
|
|
|
|
tx.value = value.toString()
|
|
|
|
}
|
|
|
|
if (tx.maxFeePerGas) {
|
|
|
|
tx.maxFeePerGas = hexToGwei(tx.maxFeePerGas).toString()
|
|
|
|
}
|
|
|
|
if (tx.maxPriorityFeePerGas) {
|
|
|
|
tx.maxPriorityFeePerGas = hexToGwei(tx.maxPriorityFeePerGas).toString()
|
|
|
|
}
|
|
|
|
if (tx.gasPrice) {
|
|
|
|
tx.gasPrice = hexToGwei(tx.gasPrice)
|
|
|
|
}
|
|
|
|
if (tx.gasLimit) {
|
|
|
|
tx.gasLimit = parseInt(root.store.hexToDec(tx.gasLimit))
|
|
|
|
}
|
|
|
|
if (tx.nonce) {
|
|
|
|
tx.nonce = parseInt(root.store.hexToDec(tx.nonce))
|
|
|
|
}
|
|
|
|
|
|
|
|
payload = JSON.stringify(tx, null, 2)
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
preparedData: payload,
|
|
|
|
value: value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function hexToEth(value) {
|
|
|
|
return hexToEthDenomination(value, "eth")
|
|
|
|
}
|
|
|
|
function hexToGwei(value) {
|
|
|
|
return hexToEthDenomination(value, "gwei")
|
|
|
|
}
|
|
|
|
function hexToEthDenomination(value, ethUnit) {
|
|
|
|
let unitMapping = {
|
|
|
|
"gwei": 9,
|
|
|
|
"eth": 18
|
|
|
|
}
|
|
|
|
let Math = SQUtils.AmountsArithmetic
|
|
|
|
let decValue = root.store.hexToDec(value)
|
|
|
|
if (!!decValue) {
|
|
|
|
return Math.div(Math.fromNumber(decValue), Math.fromNumber(1, unitMapping[ethUnit]))
|
|
|
|
}
|
|
|
|
return Math.fromNumber(0)
|
|
|
|
}
|
2024-05-31 09:58:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// The queue is used to ensure that the events are processed in the order they are received but they could be
|
|
|
|
/// processed handled randomly on user intervention through activity center
|
|
|
|
SessionRequestsModel {
|
|
|
|
id: requests
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: sessionRequestComponent
|
|
|
|
|
|
|
|
SessionRequestResolved {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|