We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91acb9e commit 7099e33Copy full SHA for 7099e33
crates/common/fmt/src/ui.rs
@@ -783,6 +783,7 @@ impl<T: UIfmt> UIfmt for WithOtherFields<T> {
783
#[expect(missing_docs)]
784
pub enum EthValue {
785
U64(U64),
786
+ Address(Address),
787
U256(U256),
788
U64Array(Vec<U64>),
789
U256Array(Vec<U256>),
@@ -800,6 +801,7 @@ impl UIfmt for EthValue {
800
801
match self {
802
Self::U64(num) => num.pretty(),
803
Self::U256(num) => num.pretty(),
804
+ Self::Address(addr) => addr.pretty(),
805
Self::U64Array(arr) => arr.pretty(),
806
Self::U256Array(arr) => arr.pretty(),
807
Self::Other(val) => val.to_string().trim_matches('"').to_string(),
0 commit comments