We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
UI
It show's Formula below as the formula for Bridge fee:5 TON + 0.25% of amount
5 TON + 0.25% of amount
An example:
Assume we have 100 as Ton amount. according to Formula Bridge fee should be: 5 + 0.25% * 100 = 5 + 0.25 = 5.25
5 + 0.25% * 100 = 5 + 0.25 = 5.25
But the Fee on the screen is 5.2375
Looking at the codebase and calculated fees on the website it's clear that the correct formula is: 5 TON + 0.25% of (amount - 5 )
5 TON + 0.25% of (amount - 5 )
Following our example in "Actual Result" we would have:
Ton amount = 100
Bridge Fee = 5 + (0.25% * (100 - 5) = 5 + 0.2375 = 5.2375
High
Desktop (please complete the following information):
No response
The text was updated successfully, but these errors were encountered:
Update [lang/en/bridge.json]: Amending Incorrect Fee formula
d1af0d8
As discussed in issue ton-blockchain#13, the current formula is not correct
No branches or pull requests
Bug Type
UI
Reproduction steps
Actual result
It show's Formula below as the formula for Bridge fee:
5 TON + 0.25% of amount
An example:
Assume we have 100 as Ton amount. according to Formula Bridge fee should be:
5 + 0.25% * 100 = 5 + 0.25 = 5.25
But the Fee on the screen is 5.2375
Expected result
Looking at the codebase and calculated fees on the website it's clear that the correct formula is:
5 TON + 0.25% of (amount - 5 )
Following our example in "Actual Result" we would have:
Ton amount = 100
Bridge Fee = 5 + (0.25% * (100 - 5) = 5 + 0.2375 = 5.2375
Suggested Severity
High
Device
Desktop (please complete the following information):
Additional Context
No response
The text was updated successfully, but these errors were encountered: