Posted on c/ElrondDevelopers 1 Pie8375968201c/ElrondDevelopers 3 years ago Hi again everybody, I have some issues with BigUint, BigUint from transaction have 18 "0" but not BigUint generated with BigUint::from(u64) ? Comment 1 Comments mwf81318617 3years ago if you do BigUint::from(1u64) you will get a big uint containing 1, not 1*10^18 A biguint has nothing to do with the way tokens are represented on the blockchain and will not manipulate your numbers in any way :)
if you do BigUint::from(1u64) you will get a big uint containing 1, not 1*10^18 A biguint has nothing to do with the way tokens are represented on the blockchain and will not manipulate your numbers in any way :)