Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IOS-8050: Apply rounding to the Hedera fee value #850

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ final class HederaTransactionBuilder {
) throws -> CompiledTransaction {
// At the moment, we intentionally don't support custom fees for HTS tokens (HIP-18 https://hips.hedera.com/HIP/hip-18.html)
let feeValue = transaction.fee.amount.value * pow(Decimal(10), transaction.fee.amount.decimals)
// Hedera fee calculation involves conversion from USD to HBar units, which ultimately results in a loss of precision.
// Therefore, the fee value is always approximate and rounding of the fee value is mandatory.
let feeRoundedValue = feeValue.rounded(roundingMode: .up)
let feeAmount = try Hbar(feeRoundedValue, .tinybar)

Expand Down
10 changes: 8 additions & 2 deletions BlockchainSdk/Blockchains/Hedera/HederaWalletManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,10 @@ final class HederaWalletManager: BaseManager {
let (exchangeRate, doesAccountExist) = input
let feeBase = doesAccountExist ? transferFeeBase : Constants.cryptoCreateServiceCostInUSD
let feeValue = exchangeRate.nextHBARPerUSD * feeBase * Constants.maxFeeMultiplier
let feeAmount = Amount(with: walletManager.wallet.blockchain, value: feeValue)
// Hedera fee calculation involves conversion from USD to HBar units, which ultimately results in a loss of precision.
// Therefore, the fee value is always approximate and rounding of the fee value is mandatory.
let feeRoundedValue = feeValue.rounded(blockchain: walletManager.wallet.blockchain, roundingMode: .up)
let feeAmount = Amount(with: walletManager.wallet.blockchain, value: feeRoundedValue)
Comment on lines 424 to +428
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Вот тут я вообще не понял:

я изначально добавил .rounded(blockchain: walletManager.wallet.blockchain, roundingMode: .up) только для exchangeRate.nextHBARPerUSD - так как именно этот компонент привносил избыточную точность, он был чем-то вроде 17.9466625137819201082727172

Я округляю его до scale равного Hedera decimal count (это 8) - и получаю 17.94666251

Затем домножаю в 424 строке эту величину на feeBase (0.05 в случае простого трансфера) и maxFeeMultiplier (1.1) и ожидаю, что scale результата будет меньше или равен наибольшему scale множителей (то есть 8)

В итоге получаю 0.98706643805 со scale равным 11, что естественно приводит к дробному числу во fromAmount ¯_(ツ)_/¯

Поэтому пришлось применить округление на финальное значение

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Логично, это же просто число, округленное, после последующих операций не гарантируется сохранение оригинального числа знаков после запятой

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Так может тогда имеет смысл оставить округление только на последнем этапе, чтобы не терять точность лишний раз?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

На последнем это каком? Непосредственно в экспрессе?

Вообще здесь и есть последний этап внутри воллет менеджера - перед отдачей посчитанного fee наружу в estimateFee (что и вызывало ошибку в экспрессе)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Да я это и имел в виду. Ты пишешь, округлил, потом помножил, потом надо опять округлять. Вот и предложил не округлять на промежуточных этапах, но раз уже так, то ок

Copy link
Contributor Author

@m3g0byt3 m3g0byt3 Sep 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Эта логика специфична для Хедеры и может аффектить обычные транзы, а не только экспресс - поэтому округление точно нужно тут

Но в экспрессе по хорошему тоже сделать бы округление перед отправкой запроса (со scale == decimal count), раз у бэка такой строгий контракт - чтобы ситуация как с хедерой не повторилась с другими сетями

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ты пишешь, округлил, потом помножил, потом надо опять округлять.

ну и это я же писал что пробовал и что не взлетело)
сейчас двойного округления нет

let fee = Fee(feeAmount)

return [fee]
Expand Down Expand Up @@ -553,7 +556,10 @@ extension HederaWalletManager: AssetRequirementsManager {
}

let feeValue = tokenAssociationFeeExchangeRate * Constants.tokenAssociateServiceCostInUSD
let feeAmount = Amount.init(with: wallet.blockchain, value: feeValue)
// Hedera fee calculation involves conversion from USD to HBar units, which ultimately results in a loss of precision.
// Therefore, the fee value is always approximate and rounding of the fee value is mandatory.
let feeRoundedValue = feeValue.rounded(blockchain: wallet.blockchain, roundingMode: .up)
let feeAmount = Amount(with: wallet.blockchain, value: feeRoundedValue)

return .paidTransactionWithFee(feeAmount: feeAmount)
}
Expand Down
Loading