2021-10-28 20:23:30 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
import shared.controls 1.0
|
|
|
|
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
|
|
import shared.views 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
2022-03-08 18:49:33 +00:00
|
|
|
import AppLayouts.Wallet 1.0
|
2021-10-28 20:23:30 +00:00
|
|
|
|
|
|
|
StatusModal {
|
|
|
|
id: root
|
2022-04-04 11:26:30 +00:00
|
|
|
header.title: qsTr("Send")
|
2021-10-28 20:23:30 +00:00
|
|
|
height: 540
|
|
|
|
|
|
|
|
property var store
|
2022-01-04 12:06:05 +00:00
|
|
|
property var contactsStore
|
|
|
|
|
2021-10-28 20:23:30 +00:00
|
|
|
property var selectedAccount
|
|
|
|
property var selectedRecipient
|
|
|
|
property var selectedAsset
|
|
|
|
property var selectedAmount
|
|
|
|
property var selectedFiatAmount
|
2022-02-09 00:04:49 +00:00
|
|
|
property var selectedType: RecipientSelector.Type.Address
|
2021-10-28 20:23:30 +00:00
|
|
|
property bool outgoing: true
|
2022-02-24 19:24:58 +00:00
|
|
|
property bool isARequest: false
|
2021-12-08 21:20:43 +00:00
|
|
|
property string msgId: ""
|
2021-10-28 20:23:30 +00:00
|
|
|
property string trxData: ""
|
2022-05-19 08:53:57 +00:00
|
|
|
property int chainId
|
2021-10-28 20:23:30 +00:00
|
|
|
|
|
|
|
property alias transactionSigner: transactionSigner
|
|
|
|
|
2022-02-09 00:04:49 +00:00
|
|
|
property var sendTransaction: function() {
|
|
|
|
stack.currentGroup.isPending = true
|
|
|
|
let success = false
|
2022-05-19 08:53:57 +00:00
|
|
|
success = root.store.transfer(
|
|
|
|
selectFromAccount.selectedAccount.address,
|
|
|
|
selectRecipient.selectedRecipient.address,
|
|
|
|
root.selectedAsset.symbol,
|
|
|
|
root.selectedAmount,
|
|
|
|
gasSelector.selectedGasLimit,
|
|
|
|
gasSelector.suggestedFees.eip1559Enabled ? "" : gasSelector.selectedGasPrice,
|
|
|
|
gasSelector.selectedTipLimit,
|
|
|
|
gasSelector.selectedOverallLimit,
|
|
|
|
transactionSigner.enteredPassword,
|
|
|
|
root.chainId,
|
|
|
|
stack.uuid,
|
|
|
|
gasSelector.suggestedFees.eip1559Enabled,
|
|
|
|
)
|
2022-02-24 19:24:58 +00:00
|
|
|
// TODO remove this else once the thread and connection are back
|
|
|
|
// if(!success){
|
|
|
|
// //% "Invalid transaction parameters"
|
2022-04-04 11:26:30 +00:00
|
|
|
// sendingError.text = qsTr("Invalid transaction parameters")
|
2022-02-24 19:24:58 +00:00
|
|
|
// sendingError.open()
|
|
|
|
// }
|
2021-10-28 20:23:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
property MessageDialog sendingError: MessageDialog {
|
|
|
|
id: sendingError
|
2022-04-04 11:26:30 +00:00
|
|
|
title: qsTr("Error sending the transaction")
|
2021-10-28 20:23:30 +00:00
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
}
|
2021-12-08 21:20:43 +00:00
|
|
|
signal openGasEstimateErrorPopup(string message)
|
2021-10-28 20:23:30 +00:00
|
|
|
|
|
|
|
onClosed: {
|
|
|
|
stack.pop(groupPreview, StackView.Immediate)
|
|
|
|
}
|
|
|
|
|
2022-05-19 08:53:57 +00:00
|
|
|
onOpened: {
|
|
|
|
gasSelector.suggestedFees = root.store.suggestedFees(root.chainId)
|
|
|
|
gasSelector.checkOptimal()
|
|
|
|
}
|
|
|
|
|
2021-10-28 20:23:30 +00:00
|
|
|
contentItem: Item {
|
|
|
|
width: root.width
|
|
|
|
height: childrenRect.height
|
|
|
|
TransactionStackView {
|
|
|
|
id: stack
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
initialItem: groupPreview
|
|
|
|
isLastGroup: stack.currentGroup === groupSignTx
|
|
|
|
onGroupActivated: {
|
2022-02-09 00:04:49 +00:00
|
|
|
root.header.title = group.headerText
|
2021-10-28 20:23:30 +00:00
|
|
|
btnNext.text = group.footerText
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: groupSelectAcct
|
|
|
|
headerText: {
|
2021-12-13 14:24:21 +00:00
|
|
|
// Not Refactored Yet
|
|
|
|
// if(trxData.startsWith("0x095ea7b3")){
|
|
|
|
// const approveData = JSON.parse(root.store.walletModelInst.tokensView.decodeTokenApproval(selectedRecipient.address, trxData))
|
|
|
|
// if(approveData.symbol)
|
|
|
|
// //% "Authorize %1 %2"
|
2022-04-04 11:26:30 +00:00
|
|
|
// return qsTr("Error sending the transaction").arg(approveData.amount).arg(approveData.symbol)
|
2021-12-13 14:24:21 +00:00
|
|
|
// }
|
2022-02-01 15:31:57 +00:00
|
|
|
return qsTr("Send");
|
2021-10-28 20:23:30 +00:00
|
|
|
}
|
2022-04-04 11:26:30 +00:00
|
|
|
footerText: qsTr("Continue")
|
2021-10-28 20:23:30 +00:00
|
|
|
showNextBtn: false
|
|
|
|
onBackClicked: function() {
|
|
|
|
if(validate()) {
|
|
|
|
stack.pop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
StatusAccountSelector {
|
|
|
|
id: selectFromAccount
|
2022-02-09 00:04:49 +00:00
|
|
|
accounts: root.store.accounts
|
2022-02-01 15:31:57 +00:00
|
|
|
currency: root.store.currentCurrency
|
2021-10-28 20:23:30 +00:00
|
|
|
width: stack.width
|
|
|
|
selectedAccount: root.selectedAccount
|
2022-04-04 11:26:30 +00:00
|
|
|
label: qsTr("Choose account")
|
2021-10-28 20:23:30 +00:00
|
|
|
showBalanceForAssetSymbol: root.selectedAsset.symbol
|
2022-05-19 08:53:57 +00:00
|
|
|
chainId: root.chainId
|
2021-10-28 20:23:30 +00:00
|
|
|
minRequiredAssetBalance: parseFloat(root.selectedAmount)
|
|
|
|
onSelectedAccountChanged: if (isValid) { gasSelector.estimateGas() }
|
|
|
|
}
|
|
|
|
RecipientSelector {
|
|
|
|
id: selectRecipient
|
|
|
|
visible: false
|
2022-02-09 00:04:49 +00:00
|
|
|
accounts: root.store.accounts
|
2022-01-04 12:06:05 +00:00
|
|
|
contactsStore: root.contactsStore
|
2021-10-28 20:23:30 +00:00
|
|
|
selectedRecipient: root.selectedRecipient
|
2022-02-09 00:04:49 +00:00
|
|
|
selectedType: root.selectedType
|
2021-10-28 20:23:30 +00:00
|
|
|
readOnly: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: groupSelectGas
|
2022-04-04 11:26:30 +00:00
|
|
|
headerText: qsTr("Network fee")
|
2021-10-28 20:23:30 +00:00
|
|
|
footerText: qsTr("Continue")
|
|
|
|
showNextBtn: false
|
|
|
|
onBackClicked: function() {
|
|
|
|
stack.pop()
|
|
|
|
}
|
|
|
|
GasSelector {
|
|
|
|
id: gasSelector
|
|
|
|
anchors.topMargin: Style.current.padding
|
2022-02-01 15:31:57 +00:00
|
|
|
getGasEthValue: root.store.getGasEthValue
|
|
|
|
getFiatValue: root.store.getFiatValue
|
|
|
|
defaultCurrency: root.store.currentCurrency
|
2021-10-28 20:23:30 +00:00
|
|
|
width: stack.width
|
2022-02-09 09:43:23 +00:00
|
|
|
|
2021-10-28 20:23:30 +00:00
|
|
|
property var estimateGas: Backpressure.debounce(gasSelector, 600, function() {
|
2022-02-01 15:31:57 +00:00
|
|
|
if (!(selectFromAccount.selectedAccount && selectFromAccount.selectedAccount.address &&
|
|
|
|
selectRecipient.selectedRecipient && selectRecipient.selectedRecipient.address &&
|
2022-05-19 08:53:57 +00:00
|
|
|
root.selectedAsset && root.selectedAsset.symbol &&
|
2022-02-01 15:31:57 +00:00
|
|
|
root.selectedAmount)) {
|
|
|
|
selectedGasLimit = 250000
|
|
|
|
defaultGasLimit = selectedGasLimit
|
|
|
|
return
|
|
|
|
}
|
2022-02-09 09:43:23 +00:00
|
|
|
|
2022-02-01 15:31:57 +00:00
|
|
|
let gasEstimate = JSON.parse(root.store.estimateGas(
|
|
|
|
selectFromAccount.selectedAccount.address,
|
|
|
|
selectRecipient.selectedRecipient.address,
|
2022-05-19 08:53:57 +00:00
|
|
|
root.selectedAsset.symbol,
|
2022-02-01 15:31:57 +00:00
|
|
|
root.selectedAmount,
|
2022-05-19 08:53:57 +00:00
|
|
|
root.chainId,
|
|
|
|
trxData
|
|
|
|
))
|
2021-10-28 20:23:30 +00:00
|
|
|
|
2022-02-01 15:31:57 +00:00
|
|
|
if (!gasEstimate.success) {
|
|
|
|
let message = qsTr("Error estimating gas: %1").arg(gasEstimate.error.message)
|
|
|
|
root.openGasEstimateErrorPopup(message);
|
2022-01-31 16:03:45 +00:00
|
|
|
return
|
2022-02-01 15:31:57 +00:00
|
|
|
}
|
|
|
|
selectedGasLimit = gasEstimate.result
|
|
|
|
defaultGasLimit = selectedGasLimit
|
2021-10-28 20:23:30 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
GasValidator {
|
|
|
|
id: gasValidator
|
|
|
|
anchors.top: gasSelector.bottom
|
2022-07-27 21:10:00 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2021-10-28 20:23:30 +00:00
|
|
|
selectedAccount: selectFromAccount.selectedAccount
|
|
|
|
selectedAmount: parseFloat(root.selectedAmount)
|
|
|
|
selectedAsset: root.selectedAsset
|
|
|
|
selectedGasEthValue: gasSelector.selectedGasEthValue
|
|
|
|
}
|
|
|
|
}
|
2022-02-09 09:43:23 +00:00
|
|
|
|
2021-10-28 20:23:30 +00:00
|
|
|
TransactionFormGroup {
|
|
|
|
id: groupPreview
|
2022-04-04 11:26:30 +00:00
|
|
|
headerText: qsTr("Transaction preview")
|
|
|
|
footerText: qsTr("Sign with password")
|
2021-10-28 20:23:30 +00:00
|
|
|
showBackBtn: false
|
|
|
|
onNextClicked: function() {
|
|
|
|
stack.push(groupSignTx, StackView.Immediate)
|
|
|
|
}
|
|
|
|
isValid: groupSelectAcct.isValid && groupSelectGas.isValid && pvwTransaction.isValid
|
|
|
|
|
|
|
|
TransactionPreview {
|
|
|
|
id: pvwTransaction
|
|
|
|
width: stack.width
|
|
|
|
fromAccount: selectFromAccount.selectedAccount
|
|
|
|
gas: {
|
|
|
|
"value": gasSelector.selectedGasEthValue,
|
|
|
|
"symbol": "ETH",
|
|
|
|
"fiatValue": gasSelector.selectedGasFiatValue
|
|
|
|
}
|
|
|
|
toAccount: selectRecipient.selectedRecipient
|
|
|
|
asset: root.selectedAsset
|
|
|
|
amount: { "value": root.selectedAmount, "fiatValue": root.selectedFiatAmount }
|
2022-02-01 15:31:57 +00:00
|
|
|
currency: root.store.currentCurrency
|
2021-10-28 20:23:30 +00:00
|
|
|
isFromEditable: false
|
|
|
|
trxData: root.trxData
|
|
|
|
isGasEditable: true
|
|
|
|
fromValid: balanceValidator.isValid
|
|
|
|
gasValid: gasValidator.isValid
|
|
|
|
onFromClicked: { stack.push(groupSelectAcct, StackView.Immediate) }
|
|
|
|
onGasClicked: { stack.push(groupSelectGas, StackView.Immediate) }
|
|
|
|
}
|
|
|
|
BalanceValidator {
|
|
|
|
id: balanceValidator
|
|
|
|
anchors.top: pvwTransaction.bottom
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
account: selectFromAccount.selectedAccount
|
|
|
|
amount: !!root.selectedAmount ? parseFloat(root.selectedAmount) : 0.0
|
2022-05-19 08:53:57 +00:00
|
|
|
chainId: root.chainId
|
2021-10-28 20:23:30 +00:00
|
|
|
asset: root.selectedAsset
|
|
|
|
}
|
|
|
|
GasValidator {
|
|
|
|
id: gasValidator2
|
|
|
|
anchors.top: balanceValidator.visible ? balanceValidator.bottom : pvwTransaction.bottom
|
|
|
|
anchors.topMargin: balanceValidator.visible ? 5 : 0
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
selectedAccount: selectFromAccount.selectedAccount
|
|
|
|
selectedAmount: parseFloat(root.selectedAmount)
|
|
|
|
selectedAsset: root.selectedAsset
|
|
|
|
selectedGasEthValue: gasSelector.selectedGasEthValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: groupSignTx
|
2022-04-04 11:26:30 +00:00
|
|
|
headerText: qsTr("Sign with password")
|
|
|
|
footerText: qsTr("Send %1 %2").arg(root.selectedAmount).arg(!!root.selectedAsset ? root.selectedAsset.symbol : "")
|
2021-10-28 20:23:30 +00:00
|
|
|
onBackClicked: function() {
|
|
|
|
stack.pop()
|
|
|
|
}
|
|
|
|
|
|
|
|
TransactionSigner {
|
|
|
|
id: transactionSigner
|
|
|
|
width: stack.width
|
2022-02-10 20:33:43 +00:00
|
|
|
signingPhrase: root.store.signingPhrase
|
2021-10-28 20:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
leftButtons: [
|
2022-08-02 13:48:07 +00:00
|
|
|
StatusBackButton {
|
2021-10-28 20:23:30 +00:00
|
|
|
id: btnBack
|
|
|
|
visible: stack.currentGroup.showBackBtn
|
|
|
|
enabled: stack.currentGroup.isValid || stack.isLastGroup
|
|
|
|
onClicked: {
|
|
|
|
if (typeof stack.currentGroup.onBackClicked === "function") {
|
|
|
|
return stack.currentGroup.onBackClicked()
|
|
|
|
}
|
|
|
|
stack.back()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
rightButtons: [
|
|
|
|
StatusButton {
|
|
|
|
id: btnNext
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Next")
|
2021-10-28 20:23:30 +00:00
|
|
|
enabled: stack.currentGroup.isValid && !stack.currentGroup.isPending
|
|
|
|
visible: stack.currentGroup.showNextBtn
|
|
|
|
onClicked: {
|
|
|
|
const validity = stack.currentGroup.validate()
|
|
|
|
if (validity.isValid && !validity.isPending) {
|
|
|
|
if (stack.isLastGroup) {
|
|
|
|
return root.sendTransaction(gasSelector.selectedGasLimit,
|
2022-05-19 08:53:57 +00:00
|
|
|
gasSelector.suggestedFees.eip1559Enabled ? "" : gasSelector.selectedGasPrice,
|
2021-10-28 20:23:30 +00:00
|
|
|
gasSelector.selectedTipLimit,
|
|
|
|
gasSelector.selectedOverallLimit,
|
|
|
|
transactionSigner.enteredPassword)
|
|
|
|
}
|
|
|
|
|
2022-05-19 08:53:57 +00:00
|
|
|
if(gasSelector.suggestedFees.eip1559Enabled && stack.currentGroup === groupSelectGas && gasSelector.advancedMode){
|
2021-10-28 20:23:30 +00:00
|
|
|
if(gasSelector.showPriceLimitWarning || gasSelector.showTipLimitWarning){
|
2021-12-07 20:33:12 +00:00
|
|
|
Global.openPopup(transactionSettingsConfirmationPopupComponent, {
|
2022-03-23 08:32:25 +00:00
|
|
|
currentBaseFee: gasSelector.suggestedFees.baseFee,
|
2021-10-28 20:23:30 +00:00
|
|
|
currentMinimumTip: gasSelector.perGasTipLimitFloor,
|
|
|
|
currentAverageTip: gasSelector.perGasTipLimitAverage,
|
|
|
|
tipLimit: gasSelector.selectedTipLimit,
|
|
|
|
suggestedTipLimit: gasSelector.perGasTipLimitFloor, // TODO:
|
|
|
|
priceLimit: gasSelector.selectedOverallLimit,
|
2022-03-23 08:32:25 +00:00
|
|
|
suggestedPriceLimit: gasSelector.suggestedFees.baseFee + gasSelector.perGasTipLimitFloor,
|
2021-10-28 20:23:30 +00:00
|
|
|
showPriceLimitWarning: gasSelector.showPriceLimitWarning,
|
|
|
|
showTipLimitWarning: gasSelector.showTipLimitWarning,
|
|
|
|
onConfirm: function(){
|
|
|
|
stack.next();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (typeof stack.currentGroup.onNextClicked === "function") {
|
|
|
|
return stack.currentGroup.onNextClicked()
|
|
|
|
}
|
|
|
|
stack.next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: transactionSettingsConfirmationPopupComponent
|
2021-12-08 21:20:43 +00:00
|
|
|
TransactionSettingsConfirmationPopup { }
|
2021-10-28 20:23:30 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 00:04:49 +00:00
|
|
|
Connections {
|
|
|
|
target: root.store.walletSectionTransactionsInst
|
|
|
|
onTransactionSent: {
|
|
|
|
try {
|
|
|
|
let response = JSON.parse(txResult)
|
|
|
|
if (response.uuid !== stack.uuid)
|
|
|
|
return
|
2021-10-28 20:23:30 +00:00
|
|
|
|
2022-02-24 19:24:58 +00:00
|
|
|
stack.currentGroup.isPending = false
|
|
|
|
|
2022-02-09 00:04:49 +00:00
|
|
|
let transactionId = response.result
|
2021-10-28 20:23:30 +00:00
|
|
|
|
2022-02-09 00:04:49 +00:00
|
|
|
if (!response.success) {
|
|
|
|
if (Utils.isInvalidPasswordMessage(transactionId)){
|
2022-04-04 11:26:30 +00:00
|
|
|
transactionSigner.validationError = qsTr("Wrong password")
|
2022-02-09 00:04:49 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
sendingError.text = transactionId
|
|
|
|
return sendingError.open()
|
|
|
|
}
|
2022-02-24 19:24:58 +00:00
|
|
|
|
|
|
|
if(isARequest)
|
|
|
|
root.store.acceptRequestTransaction(transactionId, msgId, root.store.getPubkey() + transactionId.substr(2))
|
|
|
|
|
|
|
|
// Refactor this
|
2022-05-05 10:28:54 +00:00
|
|
|
let url = "" //`${walletModel.utilsView.etherscanLink}/${response.result}`
|
|
|
|
Global.displayToastMessage(qsTr("Transaction pending..."),
|
2022-05-19 08:53:57 +00:00
|
|
|
qsTr("View on etherscan"),
|
2022-05-05 10:28:54 +00:00
|
|
|
"",
|
|
|
|
true,
|
|
|
|
Constants.ephemeralNotificationType.normal,
|
|
|
|
url)
|
2022-02-24 19:24:58 +00:00
|
|
|
|
2022-02-09 00:04:49 +00:00
|
|
|
root.close()
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Error parsing the response', e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-28 20:23:30 +00:00
|
|
|
}
|
|
|
|
|