Calculates the cost of a transaction in ETH.
Formats a U256 number to string, adding an exponential notation hint.
Formats a token value for display. Adapted from foundry-common-fmt
.
Formats a U256 number to string, adding an exponential notation hint if it
is larger than 10_000
, with a precision of 4
figures, and trimming the
trailing zeros.
Converts h256
value as BE into the u64
Reads the JSON file at the specified path and deserializes it into the provided type.
Returns an error if the file cannot be read or deserialization fails.
Returns the number expressed as a string in exponential notation
with the given precision (number of significant figures),
optionally removing trailing zeros from the mantissa.
Writes the given serializable object as JSON to the specified file path using pretty printing.
Returns an error if the file cannot be created or if serialization/writing fails.