foundry_common_fmt/lib.rs
//! Helpers for formatting Ethereum types.
mod console;
pub use console::{console_format, ConsoleFmt, FormatSpec};
mod dynamic;
pub use dynamic::{format_token, format_token_raw, format_tokens, format_tokens_raw, parse_tokens};
mod exp;
pub use exp::{format_int_exp, format_uint_exp, to_exp_notation};
mod ui;
pub use ui::{get_pretty_block_attr, get_pretty_tx_attr, EthValue, UIfmt};
mod eof;
pub use eof::pretty_eof;