Modules§
- alias
- Type aliases for external crates types that conflict with our own types or are too verbose.
- config
- Application configuration.
- eth
- ext
- Standard library extensions.
- infra
- Shared infrastructure.
- ledger
- utils
Macros§
- event_
with - Dynamic event logging based on the provided level.
- gen_
newtype_ from - Generates
From
implementation for a newtype that delegates to the inner typeFrom
. - gen_
newtype_ try_ from - Generates
TryFrom
implementation for a newtype that delegates to the inner typeTryFrom
. - gen_
test_ bincode - Generates unit test that checks that bincode’s serialization and deserialization are compatible
- gen_
test_ json - Generates a unit test that verifies JSON serialization/deserialization compatibility using snapshots.
- gen_
test_ serde - Generates unit test that checks implementation of
Serialize
andDeserialize
are compatible. - if_else
- Ternary operator from ternop, but renamed.
- log_
and_ err - Logs an error and also wrap the existing error with the provided message.