foundry_common_fmt/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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;