alloy-primitives 0.7.0

Ethereum primitive types
Documentation
#[macro_use]
mod macros;

mod address;
pub use address::{Address, AddressChecksumBuffer, AddressError};

mod bloom;
pub use bloom::{Bloom, BloomInput, BLOOM_BITS_PER_ITEM, BLOOM_SIZE_BITS, BLOOM_SIZE_BYTES};

mod fixed;
pub use fixed::FixedBytes;

mod function;
pub use function::Function;

#[cfg(feature = "rlp")]
mod rlp;

#[cfg(feature = "serde")]
mod serde;

#[cfg(feature = "ssz")]
mod ssz;