2024-05-01 16:15:42 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
|
2024-05-31 09:58:47 +00:00
|
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
|
|
|
|
QObject {
|
2024-05-21 10:42:50 +00:00
|
|
|
id: root
|
|
|
|
|
|
|
|
required property var controller
|
|
|
|
/// \c dappsJson serialized from status-go.wallet.GetDapps
|
|
|
|
signal dappsListReceived(string dappsJson)
|
2024-07-17 10:46:43 +00:00
|
|
|
signal userAuthenticated(string topic, string id, string password, string pin, string payload)
|
2024-06-04 20:45:03 +00:00
|
|
|
signal userAuthenticationFailed(string topic, string id)
|
2024-05-20 18:42:31 +00:00
|
|
|
|
|
|
|
function addWalletConnectSession(sessionJson) {
|
2024-06-07 16:54:19 +00:00
|
|
|
return controller.addWalletConnectSession(sessionJson)
|
2024-05-21 10:42:50 +00:00
|
|
|
}
|
|
|
|
|
2024-06-24 21:26:53 +00:00
|
|
|
function deactivateWalletConnectSession(topic) {
|
|
|
|
return controller.deactivateWalletConnectSession(topic)
|
|
|
|
}
|
|
|
|
|
2024-06-27 14:15:17 +00:00
|
|
|
function updateWalletConnectSessions(activeTopicsJson) {
|
|
|
|
return controller.updateSessionsMarkedAsActive(activeTopicsJson)
|
|
|
|
}
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
function authenticateUser(topic, id, address, payload) {
|
|
|
|
let ok = controller.authenticateUser(topic, id, address, payload)
|
2024-06-04 20:45:03 +00:00
|
|
|
if(!ok) {
|
|
|
|
root.userAuthenticationFailed()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-01 21:02:05 +00:00
|
|
|
// Returns the hex encoded signature of the message or empty string if error
|
|
|
|
function signMessageUnsafe(topic, id, address, password, message) {
|
|
|
|
return controller.signMessageUnsafe(address, password, message)
|
|
|
|
}
|
|
|
|
|
2024-06-07 16:54:19 +00:00
|
|
|
// Returns the hex encoded signature of the message or empty string if error
|
|
|
|
function signMessage(topic, id, address, password, message) {
|
|
|
|
return controller.signMessage(address, password, message)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the hex encoded signature of the typedDataJson or empty string if error
|
2024-07-01 21:02:05 +00:00
|
|
|
function safeSignTypedData(topic, id, address, password, typedDataJson, chainId, legacy) {
|
|
|
|
return controller.safeSignTypedData(address, password, typedDataJson, chainId, legacy)
|
2024-06-04 20:45:03 +00:00
|
|
|
}
|
|
|
|
|
2024-06-18 19:45:56 +00:00
|
|
|
// Remove leading zeros from hex number as expected by status-go
|
|
|
|
function stripLeadingZeros(hexNumber) {
|
|
|
|
let fixed = hexNumber.replace(/^0x0*/, '0x')
|
|
|
|
return fixed == '0x' ? '0x0' : fixed;
|
|
|
|
}
|
|
|
|
|
2024-06-23 08:27:29 +00:00
|
|
|
// Strip leading zeros from numbers as expected by status-go
|
|
|
|
function prepareTxForStatusGo(txObj) {
|
2024-07-17 16:36:32 +00:00
|
|
|
let tx = Object.assign({}, txObj)
|
|
|
|
if (txObj.gasLimit) {
|
|
|
|
tx.gasLimit = stripLeadingZeros(txObj.gasLimit)
|
|
|
|
}
|
|
|
|
if (txObj.gas) {
|
|
|
|
tx.gas = stripLeadingZeros(txObj.gas)
|
|
|
|
}
|
|
|
|
if (txObj.gasPrice) {
|
|
|
|
tx.gasPrice = stripLeadingZeros(txObj.gasPrice)
|
|
|
|
}
|
|
|
|
if (txObj.nonce) {
|
|
|
|
tx.nonce = stripLeadingZeros(txObj.nonce)
|
|
|
|
}
|
|
|
|
if (txObj.maxFeePerGas) {
|
|
|
|
tx.maxFeePerGas = stripLeadingZeros(txObj.maxFeePerGas)
|
|
|
|
}
|
|
|
|
if (txObj.maxPriorityFeePerGas) {
|
|
|
|
tx.maxPriorityFeePerGas = stripLeadingZeros(txObj.maxPriorityFeePerGas)
|
|
|
|
}
|
|
|
|
if (txObj.value) {
|
|
|
|
tx.value = stripLeadingZeros(txObj.value)
|
|
|
|
}
|
2024-06-27 14:19:28 +00:00
|
|
|
return tx
|
2024-06-23 08:27:29 +00:00
|
|
|
}
|
2024-07-09 17:49:00 +00:00
|
|
|
|
2024-07-10 13:58:42 +00:00
|
|
|
// Empty maxFeePerGas will fetch the current chain's maxFeePerGas
|
2024-07-09 17:49:00 +00:00
|
|
|
// Returns ui/imports/utils -> Constants.TransactionEstimatedTime values
|
2024-07-10 13:58:42 +00:00
|
|
|
function getEstimatedTime(chainId, maxFeePerGasHex) {
|
|
|
|
return controller.getEstimatedTime(chainId, maxFeePerGasHex)
|
2024-07-09 17:49:00 +00:00
|
|
|
}
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
// Returns nim's SuggestedFeesDto; see src/app_service/service/transaction/dto.nim
|
|
|
|
// Returns all value initialized to 0 if error
|
|
|
|
function getSuggestedFees(chainId) {
|
|
|
|
return JSON.parse(controller.getSuggestedFeesJson(chainId))
|
|
|
|
}
|
|
|
|
|
2024-06-23 08:27:29 +00:00
|
|
|
// Returns the hex encoded signature of the transaction or empty string if error
|
|
|
|
function signTransaction(topic, id, address, chainId, password, txObj) {
|
|
|
|
let tx = prepareTxForStatusGo(txObj)
|
2024-06-18 19:45:56 +00:00
|
|
|
return controller.signTransaction(address, chainId, password, JSON.stringify(tx))
|
|
|
|
}
|
|
|
|
|
2024-06-23 08:27:29 +00:00
|
|
|
// Returns the hash of the transaction or empty string if error
|
|
|
|
function sendTransaction(topic, id, address, chainId, password, txObj) {
|
|
|
|
let tx = prepareTxForStatusGo(txObj)
|
|
|
|
return controller.sendTransaction(address, chainId, password, JSON.stringify(tx))
|
|
|
|
}
|
|
|
|
|
2024-05-21 10:42:50 +00:00
|
|
|
/// \c getDapps triggers an async response to \c dappsListReceived
|
|
|
|
function getDapps() {
|
|
|
|
return controller.getDapps()
|
|
|
|
}
|
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
function hexToDec(hex) {
|
|
|
|
return controller.hexToDecBigString(hex)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return just the modified fields { "maxFeePerGas": "0x<...>", "maxPriorityFeePerGas": "0x<...>" }
|
|
|
|
function convertFeesInfoToHex(feesInfoJson) {
|
|
|
|
return controller.convertFeesInfoToHex(feesInfoJson)
|
|
|
|
}
|
|
|
|
|
2024-05-21 10:42:50 +00:00
|
|
|
// Handle async response from controller
|
2024-05-31 09:58:47 +00:00
|
|
|
Connections {
|
2024-05-21 10:42:50 +00:00
|
|
|
target: controller
|
|
|
|
|
|
|
|
function onDappsListReceived(dappsJson) {
|
|
|
|
root.dappsListReceived(dappsJson)
|
|
|
|
}
|
2024-06-04 20:45:03 +00:00
|
|
|
|
2024-07-17 10:46:43 +00:00
|
|
|
function onUserAuthenticationResult(topic, id, success, password, pin, payload) {
|
2024-06-04 20:45:03 +00:00
|
|
|
if (success) {
|
2024-07-17 10:46:43 +00:00
|
|
|
root.userAuthenticated(topic, id, password, pin, payload)
|
2024-06-04 20:45:03 +00:00
|
|
|
} else {
|
|
|
|
root.userAuthenticationFailed(topic, id)
|
|
|
|
}
|
|
|
|
}
|
2024-05-20 18:42:31 +00:00
|
|
|
}
|
|
|
|
}
|