2020-09-17 16:23:30 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtQuick.Dialogs 1.3
|
2021-09-28 18:04:06 +03:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-21 17:07:13 +02:00
|
|
|
|
2021-10-27 12:25:42 +02:00
|
|
|
import StatusQ.Controls 0.1
|
2021-10-21 17:07:13 +02:00
|
|
|
|
2021-10-28 00:27:49 +03:00
|
|
|
import shared.views 1.0
|
|
|
|
import shared.popups 1.0
|
2021-12-08 23:20:43 +02:00
|
|
|
import shared.stores 1.0
|
2021-10-28 00:27:49 +03:00
|
|
|
import shared.controls 1.0
|
2020-09-17 16:23:30 -04:00
|
|
|
|
2021-10-14 13:33:34 +02:00
|
|
|
// TODO: replace with StatusModal
|
2020-09-17 16:23:30 -04:00
|
|
|
ModalPopup {
|
|
|
|
id: root
|
2022-01-04 13:06:05 +01:00
|
|
|
|
2022-01-17 09:56:44 +01:00
|
|
|
property var ensUsernamesStore
|
2022-01-04 13:06:05 +01:00
|
|
|
property var contactsStore
|
2022-02-09 11:39:10 -05:00
|
|
|
property string ensUsername
|
2022-01-04 13:06:05 +01:00
|
|
|
|
2022-05-19 10:53:57 +02:00
|
|
|
property int chainId
|
2020-09-17 16:23:30 -04:00
|
|
|
readonly property var asset: {"name": "Ethereum", "symbol": "ETH"}
|
|
|
|
|
2021-08-09 18:23:52 -04:00
|
|
|
title: qsTr("Contract interaction")
|
2020-09-17 16:23:30 -04:00
|
|
|
|
2021-08-09 18:23:52 -04:00
|
|
|
property var estimateGasFunction: (function(userAddress) { return 0; })
|
2022-07-18 04:34:11 -04:00
|
|
|
property var onSendTransaction: (function(userAddress, gasLimit, gasPrice, tipLimit, overallLimit, password, eip1559Enabled){ return ""; })
|
2021-08-09 18:23:52 -04:00
|
|
|
property var onSuccess: (function(){})
|
|
|
|
|
2021-07-05 08:34:56 -04:00
|
|
|
height: 540
|
2022-07-18 04:34:11 -04:00
|
|
|
|
2020-09-17 16:23:30 -04:00
|
|
|
function sendTransaction() {
|
2022-01-17 09:56:44 +01:00
|
|
|
try {
|
2022-07-18 04:34:11 -04:00
|
|
|
let responseStr = onSendTransaction(
|
|
|
|
selectFromAccount.selectedAccount.address,
|
|
|
|
gasSelector.selectedGasLimit,
|
|
|
|
gasSelector.suggestedFees.eip1559Enabled ? "" : gasSelector.selectedGasPrice,
|
|
|
|
gasSelector.selectedTipLimit,
|
|
|
|
gasSelector.selectedOverallLimit,
|
|
|
|
transactionSigner.enteredPassword,
|
|
|
|
gasSelector.suggestedFees.eip1559Enabled);
|
|
|
|
|
2022-01-17 09:56:44 +01:00
|
|
|
let response = JSON.parse(responseStr)
|
|
|
|
|
|
|
|
if (!response.success) {
|
|
|
|
if (Utils.isInvalidPasswordMessage(response.result)){
|
2022-04-04 13:26:30 +02:00
|
|
|
transactionSigner.validationError = qsTr("Wrong password")
|
2022-01-17 09:56:44 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
sendingError.text = response.result
|
|
|
|
return sendingError.open()
|
|
|
|
}
|
|
|
|
|
|
|
|
onSuccess();
|
|
|
|
root.close();
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Error sending the transaction', e)
|
|
|
|
sendingError.text = "Error sending the transaction: " + e.message;
|
|
|
|
return sendingError.open()
|
|
|
|
}
|
2020-09-17 16:23:30 -04:00
|
|
|
}
|
|
|
|
|
2022-05-19 10:53:57 +02:00
|
|
|
onOpened: {
|
|
|
|
gasSelector.suggestedFees = root.ensUsernamesStore.suggestedFees(root.chainId)
|
|
|
|
gasSelector.checkOptimal()
|
|
|
|
}
|
|
|
|
|
2021-08-09 18:23:52 -04:00
|
|
|
property MessageDialog sendingError: MessageDialog {
|
|
|
|
id: sendingError
|
2022-04-04 13:26:30 +02:00
|
|
|
title: qsTr("Error sending the transaction")
|
2021-08-09 18:23:52 -04:00
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
}
|
|
|
|
|
2020-09-17 16:23:30 -04:00
|
|
|
TransactionStackView {
|
|
|
|
id: stack
|
|
|
|
height: parent.height
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
onGroupActivated: {
|
|
|
|
root.title = group.headerText
|
2021-01-28 12:04:10 +01:00
|
|
|
btnNext.text = group.footerText
|
2020-09-17 16:23:30 -04:00
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: group1
|
2021-08-09 18:23:52 -04:00
|
|
|
headerText: root.title
|
2022-04-04 13:26:30 +02:00
|
|
|
footerText: qsTr("Continue")
|
2020-09-17 16:23:30 -04:00
|
|
|
|
2021-10-27 12:25:42 +02:00
|
|
|
StatusAccountSelector {
|
2020-09-17 16:23:30 -04:00
|
|
|
id: selectFromAccount
|
2021-11-19 10:42:41 +01:00
|
|
|
accounts: walletSectionAccounts.model
|
2021-04-22 14:03:46 +10:00
|
|
|
selectedAccount: {
|
2021-11-19 10:42:41 +01:00
|
|
|
const currAcc = walletSectionCurrent
|
2021-04-22 14:03:46 +10:00
|
|
|
if (currAcc.walletType !== Constants.watchWalletType) {
|
|
|
|
return currAcc
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
}
|
2022-01-17 09:56:44 +01:00
|
|
|
currency: root.ensUsernamesStore.getCurrentCurrency()
|
2020-09-17 16:23:30 -04:00
|
|
|
width: stack.width
|
2022-05-19 10:53:57 +02:00
|
|
|
chainId: root.chainId
|
2022-04-04 13:26:30 +02:00
|
|
|
label: qsTr("Choose account")
|
2020-09-17 16:23:30 -04:00
|
|
|
showBalanceForAssetSymbol: "ETH"
|
|
|
|
minRequiredAssetBalance: 0
|
2020-10-07 13:47:21 +11:00
|
|
|
onSelectedAccountChanged: if (isValid) { gasSelector.estimateGas() }
|
2020-09-17 16:23:30 -04:00
|
|
|
}
|
|
|
|
RecipientSelector {
|
|
|
|
id: selectRecipient
|
|
|
|
visible: false
|
2022-01-17 09:56:44 +01:00
|
|
|
accounts: root.ensUsernamesStore.walletAccounts
|
2022-01-04 13:06:05 +01:00
|
|
|
contactsStore: root.contactsStore
|
2022-01-17 09:56:44 +01:00
|
|
|
selectedRecipient: { "address": root.ensUsernamesStore.getEnsRegisteredAddress(), "type": RecipientSelector.Type.Address }
|
2020-09-17 16:23:30 -04:00
|
|
|
readOnly: true
|
2020-10-07 13:47:21 +11:00
|
|
|
onSelectedRecipientChanged: if (isValid) { gasSelector.estimateGas() }
|
2020-09-17 16:23:30 -04:00
|
|
|
}
|
|
|
|
GasSelector {
|
|
|
|
id: gasSelector
|
2021-07-19 17:57:57 -04:00
|
|
|
visible: true
|
|
|
|
anchors.top: selectFromAccount.bottom
|
2021-09-27 12:59:50 +02:00
|
|
|
anchors.topMargin: Style.current.padding
|
2022-01-17 09:56:44 +01:00
|
|
|
getGasEthValue: root.ensUsernamesStore.getGasEthValue
|
|
|
|
getFiatValue: root.ensUsernamesStore.getFiatValue
|
|
|
|
defaultCurrency: root.ensUsernamesStore.getCurrentCurrency()
|
2022-02-28 13:30:36 +01:00
|
|
|
|
2020-09-17 16:23:30 -04:00
|
|
|
property var estimateGas: Backpressure.debounce(gasSelector, 600, function() {
|
2021-08-09 18:23:52 -04:00
|
|
|
let estimatedGas = root.estimateGasFunction(selectFromAccount.selectedAccount);
|
|
|
|
gasSelector.selectedGasLimit = estimatedGas
|
|
|
|
return estimatedGas;
|
2020-09-17 16:23:30 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
GasValidator {
|
|
|
|
id: gasValidator
|
2021-09-27 12:59:50 +02:00
|
|
|
anchors.top: gasSelector.bottom
|
2022-07-27 23:10:00 +02:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2020-09-17 16:23:30 -04:00
|
|
|
selectedAccount: selectFromAccount.selectedAccount
|
|
|
|
selectedAsset: root.asset
|
|
|
|
selectedAmount: 0
|
|
|
|
selectedGasEthValue: gasSelector.selectedGasEthValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: group3
|
2021-08-09 18:23:52 -04:00
|
|
|
headerText: root.title
|
2022-04-04 13:26:30 +02:00
|
|
|
footerText: qsTr("Sign with password")
|
2020-09-17 16:23:30 -04:00
|
|
|
|
|
|
|
TransactionPreview {
|
|
|
|
id: pvwTransaction
|
|
|
|
width: stack.width
|
|
|
|
fromAccount: selectFromAccount.selectedAccount
|
|
|
|
gas: {
|
|
|
|
"value": gasSelector.selectedGasEthValue,
|
|
|
|
"symbol": "ETH",
|
|
|
|
"fiatValue": gasSelector.selectedGasFiatValue
|
|
|
|
}
|
|
|
|
toAccount: selectRecipient.selectedRecipient
|
|
|
|
asset: root.asset
|
2022-01-17 09:56:44 +01:00
|
|
|
currency: root.ensUsernamesStore.getCurrentCurrency()
|
|
|
|
amount: {
|
|
|
|
const fiatValue = root.ensUsernamesStore.getFiatValue(0, root.asset.symbol, currency)
|
|
|
|
return { "value": 0, "fiatValue": fiatValue }
|
|
|
|
}
|
2020-09-17 16:23:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
TransactionFormGroup {
|
|
|
|
id: group4
|
2021-08-09 18:23:52 -04:00
|
|
|
headerText: root.title
|
2022-04-04 13:26:30 +02:00
|
|
|
footerText: qsTr("Sign with password")
|
2020-09-17 16:23:30 -04:00
|
|
|
|
|
|
|
TransactionSigner {
|
|
|
|
id: transactionSigner
|
|
|
|
width: stack.width
|
2022-01-17 09:56:44 +01:00
|
|
|
signingPhrase: root.ensUsernamesStore.getSigningPhrase()
|
2020-09-17 16:23:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: Item {
|
2021-01-13 14:15:52 -05:00
|
|
|
width: parent.width
|
|
|
|
height: btnNext.height
|
2021-08-09 18:23:52 -04:00
|
|
|
|
2022-08-02 16:48:07 +03:00
|
|
|
StatusBackButton {
|
2021-08-09 18:23:52 -04:00
|
|
|
id: btnBack
|
|
|
|
anchors.left: parent.left
|
|
|
|
visible: stack.currentGroup.showBackBtn
|
|
|
|
enabled: stack.currentGroup.isValid || stack.isLastGroup
|
|
|
|
onClicked: {
|
|
|
|
if (typeof stack.currentGroup.onBackClicked === "function") {
|
|
|
|
return stack.currentGroup.onBackClicked()
|
|
|
|
}
|
|
|
|
stack.back()
|
|
|
|
}
|
|
|
|
}
|
2022-02-09 10:43:23 +01:00
|
|
|
|
2021-07-05 08:34:56 -04:00
|
|
|
Component {
|
|
|
|
id: transactionSettingsConfirmationPopupComponent
|
|
|
|
TransactionSettingsConfirmationPopup {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2022-02-09 10:43:23 +01:00
|
|
|
|
2021-10-27 12:25:42 +02:00
|
|
|
StatusButton {
|
2020-09-17 16:23:30 -04:00
|
|
|
id: btnNext
|
|
|
|
anchors.right: parent.right
|
2022-04-04 13:26:30 +02:00
|
|
|
text: qsTr("Next")
|
2021-01-28 12:04:10 +01:00
|
|
|
enabled: stack.currentGroup.isValid
|
2020-09-17 16:23:30 -04:00
|
|
|
onClicked: {
|
2022-02-09 10:43:23 +01:00
|
|
|
const validity = stack.currentGroup.validate()
|
|
|
|
if (validity.isValid && !validity.isPending) {
|
2020-09-17 16:23:30 -04:00
|
|
|
if (stack.isLastGroup) {
|
|
|
|
return root.sendTransaction()
|
|
|
|
}
|
2021-07-05 08:34:56 -04:00
|
|
|
|
2022-05-19 10:53:57 +02:00
|
|
|
if(gasSelector.suggestedFees.eip1559Enabled && stack.currentGroup === group3 && gasSelector.advancedMode){
|
2021-07-05 08:34:56 -04:00
|
|
|
if(gasSelector.showPriceLimitWarning || gasSelector.showTipLimitWarning){
|
2021-12-07 22:33:12 +02:00
|
|
|
Global.openPopup(transactionSettingsConfirmationPopupComponent, {
|
2022-03-23 09:32:25 +01:00
|
|
|
currentBaseFee: gasSelector.suggestedFees.baseFee,
|
2021-07-05 08:34:56 -04:00
|
|
|
currentMinimumTip: gasSelector.perGasTipLimitFloor,
|
|
|
|
currentAverageTip: gasSelector.perGasTipLimitAverage,
|
|
|
|
tipLimit: gasSelector.selectedTipLimit,
|
|
|
|
suggestedTipLimit: gasSelector.perGasTipLimitFloor,
|
|
|
|
priceLimit: gasSelector.selectedOverallLimit,
|
2022-03-23 09:32:25 +01:00
|
|
|
suggestedPriceLimit: gasSelector.suggestedFees.baseFee + gasSelector.perGasTipLimitFloor,
|
2021-07-05 08:34:56 -04:00
|
|
|
showPriceLimitWarning: gasSelector.showPriceLimitWarning,
|
|
|
|
showTipLimitWarning: gasSelector.showTipLimitWarning,
|
|
|
|
onConfirm: function(){
|
|
|
|
stack.next();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2022-02-09 10:43:23 +01:00
|
|
|
|
2020-09-17 16:23:30 -04:00
|
|
|
stack.next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
|
|
}
|
|
|
|
##^##*/
|