Expand description
Misc Serde helpers for foundry crates.
Enums§
- Number
OrHex U256 - An enum that represents either a serde_json::Number integer, or a hex [U256].
- Numeric
- Helper type to parse both
u64
andU256
- Numeric
Seq - Helper type to deserialize sequence of numbers
Functions§
- deserialize_
number - Deserializes a number from hex or int
- deserialize_
number_ opt - Deserializes a number from hex or int, but optionally
- deserialize_
number_ seq - Deserializes single integer params:
1, [1], ["0x01"]
- from_
int_ or_ hex - Deserializes the input into a U256, accepting both 0x-prefixed hex and decimal strings with
arbitrary precision, defined by serde_json’s
Number
. - from_
int_ or_ hex_ opt - Deserializes the input into an
Option<U256>
, usingfrom_int_or_hex
to deserialize the inner value.