You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very often I have hard time reading the amount/fee in the logs, for example: 0.00765 Ѧ
I'm not sure is this 765,000 arktoshi or is it 76,500?! Also to figure this out, you must know the network's decimal places.
IMO it should be printed like this: Ѧ0.00765000
Types of changes
Bugfix (non-breaking change which fixes an issue)
New feature (non-breaking change which adds functionality)
Refactoring (improve a current implementation without adding a new feature or fixing a bug)
Breaking change (fix or feature that would cause existing functionality to not work as expected)
Build (changes that affect the build system)
Docs (documentation only changes)
Test (adding missing tests or fixing existing tests)
Hm, is there an easy way to hide the zeros if it's a whole number when using toLocaleString .minimumFractionDigits: 8? Because 765000 becomes 0.00765000 but 10000000000 also becomes 10.00000000.
I'm not reading that in arktoshi, I'm reading that in Ark. If I wanted the Arktoshi value, I'd multiply that by 1e8. I'm saying, reading the value as Ark is the standard but, you can add supplementary info to display in Arktoshi, but keep the standard.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Proposed changes
Very often I have hard time reading the amount/fee in the logs, for example:
0.00765 ѦI'm not sure is this
765,000arktoshi or is it76,500?! Also to figure this out, you must know the network's decimal places.IMO it should be printed like this:
Ѧ0.00765000Types of changes
Checklist