fix(qmltests): fixing qml tests

This commit is contained in:
Sale Djenic 2025-02-21 12:56:44 +01:00
parent babc3f7ddd
commit 468ca9c506

View File

@ -148,6 +148,40 @@ SplitView {
networkIconPath: Theme.svg(priv.selectedNetwork.iconUrl)
networkBlockExplorerUrl: priv.selectedNetwork.blockExplorerURL
currentBaseFee: "8.2"
currentSuggestedMinPriorityFee: "0.06"
currentSuggestedMaxPriorityFee: "5.1"
currentGasAmount: "31500"
currentNonce: 21
normalPrice: "1.45 EUR"
normalBaseFee: "10000"
normalPriorityFee: "1000"
normalTime: "~60s"
fastPrice: "1.65 EUR"
fastBaseFee: "100000"
fastPriorityFee: "10000"
fastTime: "~40s"
urgentPrice: "1.85 EUR"
urgentBaseFee: "1000000"
urgentPriorityFee: "100000"
urgentTime: "~15s"
customBaseFee: "10000"
customPriorityFee: "1000"
customGasAmount: "35000"
customNonce: 22
selectedFeeMode: StatusFeeOption.Type.Normal
fnGetPriceInCurrencyForFee: function(feeInWei) {
return "0.25 USD"
}
fnGetEstimatedTime: function(baseFeeInWei, priorityFeeInWei) {
return 0
}
fiatFees: formatBigNumber(42.542567, "EUR")
cryptoFees: formatBigNumber(0.06, "ETH")
estimatedTime: qsTr("> 5 minutes")