2020-09-03 20:14:44 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
import "../../../../../imports"
|
|
|
|
import "../../../../../shared"
|
|
|
|
import "../../../../../shared/status"
|
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
property var selectedAccount
|
|
|
|
property var selectedRecipient
|
|
|
|
property var selectedAsset
|
|
|
|
property var selectedAmount
|
|
|
|
property var selectedFiatAmount
|
2020-10-16 07:37:07 +00:00
|
|
|
property bool outgoing: true
|
2020-09-03 20:14:44 +00:00
|
|
|
|
2020-10-19 14:32:25 +00:00
|
|
|
property string trxData: ""
|
|
|
|
|
2020-10-02 17:23:33 +00:00
|
|
|
property alias transactionSigner: transactionSigner
|
2020-09-03 20:14:44 +00:00
|
|
|
|
2020-10-02 17:23:33 +00:00
|
|
|
property var sendTransaction: function(selectedGasLimit, selectedGasPrice, enteredPassword) {
|
2021-06-08 12:48:31 +00:00
|
|
|
let responseStr = walletModel.transactionsView.sendTransaction(selectFromAccount.selectedAccount.address,
|
2020-10-22 15:29:05 +00:00
|
|
|
selectRecipient.selectedRecipient.address,
|
2020-09-03 20:14:44 +00:00
|
|
|
root.selectedAsset.address,
|
|
|
|
root.selectedAmount,
|
2020-10-02 17:23:33 +00:00
|
|
|
selectedGasLimit,
|
|
|
|
selectedGasPrice,
|
2020-10-07 02:47:21 +00:00
|
|
|
enteredPassword,
|
|
|
|
stack.uuid)
|
2020-10-02 17:23:33 +00:00
|
|
|
|
2020-09-17 09:19:20 +00:00
|
|
|
root.close()
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 17:23:33 +00:00
|
|
|
id: root
|
|
|
|
|
|
|
|
//% "Send"
|
|
|
|
title: qsTrId("command-button-send")
|
|
|
|
height: 504
|
|
|
|
|
|
|
|
property MessageDialog sendingError: MessageDialog {
|
|
|
|
id: sendingError
|
|
|
|
//% "Error sending the transaction"
|
|
|
|
title: qsTrId("error-sending-the-transaction")
|
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
}
|
|
|
|
|
|
|
|
onClosed: {
|
2020-10-16 07:37:07 +00:00
|
|
|
stack.pop(groupPreview, StackView.Immediate)
|
2020-10-02 17:23:33 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 20:14:44 +00:00
|
|
|
TransactionStackView {
|
|
|
|
id: stack
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.rightMargin: Style.current.padding
|
2020-10-07 02:47:21 +00:00
|
|
|
initialItem: groupPreview
|
|
|
|
isLastGroup: stack.currentGroup === groupSignTx
|
2020-09-03 20:14:44 +00:00
|
|
|
onGroupActivated: {
|
|
|
|
root.title = group.headerText
|
2020-09-17 09:08:31 +00:00
|
|
|
btnNext.text = group.footerText
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
2020-10-07 02:47:21 +00:00
|
|
|
id: groupSelectAcct
|
2020-10-19 14:32:25 +00:00
|
|
|
headerText: {
|
|
|
|
if(trxData.startsWith("0x095ea7b3")){
|
2021-06-08 12:48:31 +00:00
|
|
|
const approveData = JSON.parse(walletModel.tokensView.decodeTokenApproval(selectedRecipient.address, trxData))
|
2020-10-19 14:32:25 +00:00
|
|
|
if(approveData.symbol)
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Authorize %1 %2"
|
|
|
|
return qsTrId("authorize--1--2").arg(approveData.amount).arg(approveData.symbol)
|
2020-10-19 14:32:25 +00:00
|
|
|
}
|
|
|
|
return qsTrId("command-button-send");
|
|
|
|
}
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Continue"
|
|
|
|
footerText: qsTrId("continue")
|
2020-10-07 02:47:21 +00:00
|
|
|
showNextBtn: false
|
|
|
|
onBackClicked: function() {
|
|
|
|
if(validate()) {
|
|
|
|
stack.pop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
AccountSelector {
|
|
|
|
id: selectFromAccount
|
2021-06-08 12:48:31 +00:00
|
|
|
accounts: walletModel.accountsView.accounts
|
|
|
|
currency: walletModel.balanceView.defaultCurrency
|
2020-10-07 02:47:21 +00:00
|
|
|
width: stack.width
|
2020-12-08 20:17:08 +00:00
|
|
|
selectedAccount: root.selectedAccount
|
2020-10-07 02:47:21 +00:00
|
|
|
//% "Choose account"
|
|
|
|
label: qsTrId("choose-account")
|
|
|
|
showBalanceForAssetSymbol: root.selectedAsset.symbol
|
|
|
|
minRequiredAssetBalance: parseFloat(root.selectedAmount)
|
|
|
|
onSelectedAccountChanged: if (isValid) { gasSelector.estimateGas() }
|
|
|
|
}
|
|
|
|
RecipientSelector {
|
|
|
|
id: selectRecipient
|
|
|
|
visible: false
|
2021-06-08 12:48:31 +00:00
|
|
|
accounts: walletModel.accountsView.accounts
|
2020-12-06 22:15:51 +00:00
|
|
|
contacts: profileModel.contacts.addedContacts
|
2020-10-07 02:47:21 +00:00
|
|
|
selectedRecipient: root.selectedRecipient
|
|
|
|
readOnly: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: groupSelectGas
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Network fee"
|
|
|
|
headerText: qsTrId("network-fee")
|
2020-09-14 12:12:47 +00:00
|
|
|
//% "Preview"
|
|
|
|
footerText: qsTrId("preview")
|
2020-10-07 02:47:21 +00:00
|
|
|
showNextBtn: false
|
|
|
|
onBackClicked: function() {
|
|
|
|
stack.pop()
|
|
|
|
}
|
2020-09-03 20:14:44 +00:00
|
|
|
GasSelector {
|
|
|
|
id: gasSelector
|
|
|
|
anchors.topMargin: Style.current.bigPadding
|
2021-06-08 12:48:31 +00:00
|
|
|
slowestGasPrice: parseFloat(walletModel.gasView.safeLowGasPrice)
|
|
|
|
fastestGasPrice: parseFloat(walletModel.gasView.fastestGasPrice)
|
|
|
|
getGasEthValue: walletModel.gasView.getGasEthValue
|
|
|
|
getFiatValue: walletModel.balanceView.getFiatValue
|
|
|
|
defaultCurrency: walletModel.balanceView.defaultCurrency
|
2020-09-03 20:14:44 +00:00
|
|
|
width: stack.width
|
2020-10-07 02:47:21 +00:00
|
|
|
|
|
|
|
property var estimateGas: Backpressure.debounce(gasSelector, 600, function() {
|
|
|
|
if (!(selectFromAccount.selectedAccount && selectFromAccount.selectedAccount.address &&
|
|
|
|
selectRecipient.selectedRecipient && selectRecipient.selectedRecipient.address &&
|
2020-09-09 18:15:14 +00:00
|
|
|
root.selectedAsset && root.selectedAsset.address &&
|
2020-10-07 02:47:21 +00:00
|
|
|
root.selectedAmount)) {
|
|
|
|
selectedGasLimit = 250000
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-06-08 12:48:31 +00:00
|
|
|
let gasEstimate = JSON.parse(walletModel.gasView.estimateGas(
|
2020-10-07 02:47:21 +00:00
|
|
|
selectFromAccount.selectedAccount.address,
|
|
|
|
selectRecipient.selectedRecipient.address,
|
2020-09-09 18:15:14 +00:00
|
|
|
root.selectedAsset.address,
|
2020-10-19 14:32:25 +00:00
|
|
|
root.selectedAmount,
|
|
|
|
trxData))
|
2020-09-09 18:15:14 +00:00
|
|
|
|
2020-09-15 08:53:56 +00:00
|
|
|
if (!gasEstimate.success) {
|
2020-09-14 12:12:47 +00:00
|
|
|
//% "Error estimating gas: %1"
|
2021-01-18 12:44:33 +00:00
|
|
|
let message = qsTrId("error-estimating-gas---1").arg(gasEstimate.error.message)
|
|
|
|
console.warn(message)
|
2021-02-18 16:36:05 +00:00
|
|
|
//% ". The transaction will probably fail."
|
|
|
|
gasEstimateErrorPopup.confirmationText = message + qsTrId("--the-transaction-will-probably-fail-")
|
2021-01-18 12:44:33 +00:00
|
|
|
gasEstimateErrorPopup.open()
|
2020-09-09 18:15:14 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
selectedGasLimit = gasEstimate.result
|
2020-10-07 02:47:21 +00:00
|
|
|
})
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
2020-09-08 21:22:47 +00:00
|
|
|
GasValidator {
|
|
|
|
id: gasValidator
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 8
|
2020-10-16 13:21:57 +00:00
|
|
|
selectedAccount: selectFromAccount.selectedAccount
|
2020-09-08 21:22:47 +00:00
|
|
|
selectedAmount: parseFloat(root.selectedAmount)
|
|
|
|
selectedAsset: root.selectedAsset
|
|
|
|
selectedGasEthValue: gasSelector.selectedGasEthValue
|
|
|
|
}
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
2020-10-07 02:47:21 +00:00
|
|
|
|
2020-09-03 20:14:44 +00:00
|
|
|
TransactionFormGroup {
|
2020-10-07 02:47:21 +00:00
|
|
|
id: groupPreview
|
2020-09-14 12:12:47 +00:00
|
|
|
//% "Transaction preview"
|
|
|
|
headerText: qsTrId("transaction-preview")
|
|
|
|
//% "Sign with password"
|
|
|
|
footerText: qsTrId("sign-with-password")
|
2020-10-07 02:47:21 +00:00
|
|
|
showBackBtn: false
|
|
|
|
onNextClicked: function() {
|
|
|
|
stack.push(groupSignTx, StackView.Immediate)
|
|
|
|
}
|
2020-10-16 13:21:57 +00:00
|
|
|
isValid: groupSelectAcct.isValid && groupSelectGas.isValid && pvwTransaction.isValid
|
2020-09-03 20:14:44 +00:00
|
|
|
|
|
|
|
TransactionPreview {
|
|
|
|
id: pvwTransaction
|
|
|
|
width: stack.width
|
2020-10-16 13:21:57 +00:00
|
|
|
fromAccount: selectFromAccount.selectedAccount
|
2020-09-03 20:14:44 +00:00
|
|
|
gas: {
|
2020-09-08 21:22:47 +00:00
|
|
|
"value": gasSelector.selectedGasEthValue,
|
|
|
|
"symbol": "ETH",
|
|
|
|
"fiatValue": gasSelector.selectedGasFiatValue
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
2020-10-16 13:21:57 +00:00
|
|
|
toAccount: selectRecipient.selectedRecipient
|
2020-09-03 20:14:44 +00:00
|
|
|
asset: root.selectedAsset
|
|
|
|
amount: { "value": root.selectedAmount, "fiatValue": root.selectedFiatAmount }
|
2021-06-08 12:48:31 +00:00
|
|
|
currency: walletModel.balanceView.defaultCurrency
|
2020-12-08 20:17:08 +00:00
|
|
|
isFromEditable: false
|
2020-12-09 15:58:42 +00:00
|
|
|
trxData: root.trxData
|
2020-10-22 12:06:35 +00:00
|
|
|
isGasEditable: true
|
|
|
|
fromValid: balanceValidator.isValid
|
|
|
|
gasValid: gasValidator.isValid
|
2020-10-16 07:37:07 +00:00
|
|
|
onFromClicked: { stack.push(groupSelectAcct, StackView.Immediate) }
|
|
|
|
onGasClicked: { stack.push(groupSelectGas, StackView.Immediate) }
|
|
|
|
}
|
2020-10-22 12:06:35 +00:00
|
|
|
BalanceValidator {
|
|
|
|
id: balanceValidator
|
|
|
|
anchors.top: pvwTransaction.bottom
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
account: selectFromAccount.selectedAccount
|
|
|
|
amount: !!root.selectedAmount ? parseFloat(root.selectedAmount) : 0.0
|
|
|
|
asset: root.selectedAsset
|
|
|
|
}
|
2020-10-16 07:37:07 +00:00
|
|
|
GasValidator {
|
|
|
|
id: gasValidator2
|
2020-10-22 12:06:35 +00:00
|
|
|
anchors.top: balanceValidator.visible ? balanceValidator.bottom : pvwTransaction.bottom
|
|
|
|
anchors.topMargin: balanceValidator.visible ? 5 : 0
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2020-10-16 13:21:57 +00:00
|
|
|
selectedAccount: selectFromAccount.selectedAccount
|
2020-10-16 07:37:07 +00:00
|
|
|
selectedAmount: parseFloat(root.selectedAmount)
|
|
|
|
selectedAsset: root.selectedAsset
|
|
|
|
selectedGasEthValue: gasSelector.selectedGasEthValue
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
2020-10-07 02:47:21 +00:00
|
|
|
id: groupSignTx
|
2020-09-14 12:12:47 +00:00
|
|
|
//% "Sign with password"
|
|
|
|
headerText: qsTrId("sign-with-password")
|
|
|
|
//% "Send %1 %2"
|
|
|
|
footerText: qsTrId("send--1--2").arg(root.selectedAmount).arg(!!root.selectedAsset ? root.selectedAsset.symbol : "")
|
2020-10-07 02:47:21 +00:00
|
|
|
onBackClicked: function() {
|
|
|
|
stack.pop()
|
|
|
|
}
|
2020-09-03 20:14:44 +00:00
|
|
|
|
|
|
|
TransactionSigner {
|
|
|
|
id: transactionSigner
|
|
|
|
width: stack.width
|
2021-06-08 12:48:31 +00:00
|
|
|
signingPhrase: walletModel.utilsView.signingPhrase
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: Item {
|
2021-01-13 19:15:52 +00:00
|
|
|
width: parent.width
|
|
|
|
height: btnNext.height
|
|
|
|
|
2020-10-07 02:47:21 +00:00
|
|
|
StatusRoundButton {
|
2020-09-03 20:14:44 +00:00
|
|
|
id: btnBack
|
|
|
|
anchors.left: parent.left
|
2020-10-07 02:47:21 +00:00
|
|
|
icon.name: "arrow-right"
|
|
|
|
icon.width: 20
|
|
|
|
icon.height: 16
|
|
|
|
rotation: 180
|
|
|
|
visible: stack.currentGroup.showBackBtn
|
|
|
|
enabled: stack.currentGroup.isValid || stack.isLastGroup
|
2020-09-03 20:14:44 +00:00
|
|
|
onClicked: {
|
2020-10-07 02:47:21 +00:00
|
|
|
if (typeof stack.currentGroup.onBackClicked === "function") {
|
|
|
|
return stack.currentGroup.onBackClicked()
|
|
|
|
}
|
2020-09-03 20:14:44 +00:00
|
|
|
stack.back()
|
|
|
|
}
|
|
|
|
}
|
2020-09-17 09:08:31 +00:00
|
|
|
StatusButton {
|
2020-09-03 20:14:44 +00:00
|
|
|
id: btnNext
|
|
|
|
anchors.right: parent.right
|
2020-09-14 12:12:47 +00:00
|
|
|
//% "Next"
|
2020-09-17 09:08:31 +00:00
|
|
|
text: qsTrId("next")
|
|
|
|
enabled: stack.currentGroup.isValid && !stack.currentGroup.isPending
|
2020-10-07 02:47:21 +00:00
|
|
|
visible: stack.currentGroup.showNextBtn
|
2020-09-03 20:14:44 +00:00
|
|
|
onClicked: {
|
2020-09-17 09:08:31 +00:00
|
|
|
const validity = stack.currentGroup.validate()
|
|
|
|
if (validity.isValid && !validity.isPending) {
|
2020-09-03 20:14:44 +00:00
|
|
|
if (stack.isLastGroup) {
|
2020-10-02 17:23:33 +00:00
|
|
|
return root.sendTransaction(gasSelector.selectedGasLimit,
|
|
|
|
gasSelector.selectedGasPrice,
|
|
|
|
transactionSigner.enteredPassword)
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
2020-10-07 02:47:21 +00:00
|
|
|
if (typeof stack.currentGroup.onNextClicked === "function") {
|
|
|
|
return stack.currentGroup.onNextClicked()
|
|
|
|
}
|
2020-09-03 20:14:44 +00:00
|
|
|
stack.next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-07 02:47:21 +00:00
|
|
|
|
|
|
|
Connections {
|
2021-06-08 12:48:31 +00:00
|
|
|
target: walletModel.transactionsView
|
2020-10-07 02:47:21 +00:00
|
|
|
onTransactionWasSent: {
|
|
|
|
try {
|
|
|
|
let response = JSON.parse(txResult)
|
|
|
|
|
|
|
|
if (response.uuid !== stack.uuid) return
|
|
|
|
|
|
|
|
stack.currentGroup.isPending = false
|
|
|
|
|
|
|
|
if (!response.success) {
|
fix: prevent crash on generate account wrong password
Fixes #2448.
Currently, if a wrong password is entered when generating a wallet account, the app will crash due to attempting to decode a `GeneratedAccount ` from an rpc response containing only an error.
With this PR, we are detecting if an error is returned in the response, and if so, raising a StatusGoException. This exception is caught in the call chain, and translated in to a `StatusGoError` which is serialised and sent to the QML view, where it is parsed and displayed as an invalid password error in the input box.
refactor: remove string return values as error messages in wallet model
In the wallet model, we were passing back empty strings for no error, or an error as a string. This is not only confusing, but does not benefit from leaning on the compiler and strong types. One has to read the entire code to understand if a string result is returned when there is no error instead of implicitly being able to understand there is no return type.
To alleviate this, account creation fundtions that do not need to return a value have been changed to a void return type, and raise `StatusGoException` if there is an error encountered. This can be caught in the call chain and used as necessary (ie to pass to QML).
refactor: move invalid password string detection to Utils
Currently, we are reading returned view model values and checking to see if they include a known string from Status Go that means there was an invalid password used. This string was placed in the codebased in mulitple locations.
This PR moves the string check to a Utils function and updates all the references to use the function in Utils.
2021-05-13 04:41:48 +00:00
|
|
|
if (Utils.isInvalidPasswordMessage(response.result)){
|
2020-10-07 02:47:21 +00:00
|
|
|
//% "Wrong password"
|
|
|
|
transactionSigner.validationError = qsTrId("wrong-password")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
sendingError.text = response.result
|
|
|
|
return sendingError.open()
|
|
|
|
}
|
|
|
|
|
|
|
|
//% "Transaction pending..."
|
|
|
|
toastMessage.title = qsTrId("ens-transaction-pending")
|
2020-10-27 08:18:03 +00:00
|
|
|
toastMessage.source = "../../../../img/loading.svg"
|
2020-10-07 02:47:21 +00:00
|
|
|
toastMessage.iconColor = Style.current.primary
|
|
|
|
toastMessage.iconRotates = true
|
2021-06-08 12:48:31 +00:00
|
|
|
toastMessage.link = `${walletModel.utilsView.etherscanLink}/${response.result}`
|
2020-10-07 02:47:21 +00:00
|
|
|
toastMessage.open()
|
|
|
|
root.close()
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Error parsing the response', e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-03 20:14:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
}
|
|
|
|
##^##*/
|
|
|
|
|