/// Removing all trailing '0'. Returns empty array if input contains only '0' char.
/// Removing all trailing '0'. Returns empty array if input contains only '0' char.
bytesunpadded(bytes_s);
bytesunpadded(bytes_s);
/// Remove all '0' on the head of @a _s. Returns 0 if @a _s contains only '0'.
/// Remove all 0 byte on the head of @a _s.
std::stringunpadLeft(std::string_s);
bytesunpadLeft(bytes_s);
/// Convert u256 into user-readable string. Returns int/hex value of 64 bits int, hex of 160 bits FixedHash. As a fallback try to handle input as h256.
/// Convert u256 into user-readable string. Returns int/hex value of 64 bits int, hex of 160 bits FixedHash. As a fallback try to handle input as h256.
std::stringprettyU256(u256_n);
std::stringprettyU256(u256_n);
/// Convert h256 into user-readable string (by directly using std::string constructor).
/// Convert h256 into user-readable string (by directly using std::string constructor).