I'm really confused. I tried to alter our UIA to the following :
400,000,000 Max Supply : Result 40,000,000,000 Max Supply
.01 % Market Fee : Result 1% Market Fee
10 Max Market Fee : Result 1000 Max Market Fee
What am I doing wrong?
Tuck, in the root{} object you're seeing the *raw* integers- these do not have decimal points.
If the precision of an asset is 2 and the max supply is 1, then internally the max supply is stored as 100.
So 'precision' really just determines where the decimal place goes... but internally these are whole numbers.
The GUI will eventually hide all this.. for now, this raw data is useful if you know how to interpret it
When it comes to percents, they are also represented as integers internally, with a "precision" of 2.
100% => 10,000
0.01% => 1
0.001% => invalid