everscale-network 0.4.0

Implementation of the network part of the Everscale blockchain
Documentation
//! # TL protocol models

#![allow(clippy::enum_variant_names)]

pub mod adnl;
pub mod dht;
pub mod overlay;
pub mod rldp;
pub mod rpc;

pub type HashRef<'a> = &'a [u8; 32];