//! Zcash node address types and serialization for Zcash network messages.
//!
//! Zcash has 3 different node address formats:
//! - `AddrV1`: the format used in `addr` (v1) messages,
//! - [`AddrInVersion`]: the format used in `version` messages, and
//! - `AddrV2`: the format used in `addrv2` messages.
pub
pub
pub use ;
pub use AddrInVersion;
// These types and functions should only be visible in the `external` module,
// so that they don't leak outside the serialization code.
pub use AddrV1;
pub use AddrV2;
pub use ipv6_mapped_ip_addr;