Hi there! In continuation of “how to save strings in the storage of DApp topic” I thought about decimals. For example, I want to issue the ETH token with decimals 18, but the maximum number type in sway is u64 and that means I can use numbers till 2^18 = ~18.4467 * 1e18.
Is it possible to somehow use a larger type, or maybe it will be possible to store a large number as a string?